blob: 066e17ccb31dc152bad2d65116d21f30bff2216c [file] [log] [blame]
Brian Carlstromb9a07c12011-04-11 09:03:51 -07001/*
2 * Copyright (C) 2011 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 */
16package android.security;
17
Alex Klyubin54bb1592015-05-11 12:30:03 -070018import android.annotation.NonNull;
19import android.annotation.Nullable;
Jeff Sharkey0f3f60b2017-04-24 18:06:20 -060020import android.annotation.SdkConstant;
Robin Lee59e3baa2015-06-30 10:48:06 -070021import android.annotation.WorkerThread;
Jeff Sharkey0f3f60b2017-04-24 18:06:20 -060022import android.annotation.SdkConstant.SdkConstantType;
Brian Carlstromba1a6672011-05-24 21:54:37 -070023import android.app.Activity;
Brian Carlstrom67c30df2011-06-24 02:13:23 -070024import android.app.PendingIntent;
Robin Leeda236182016-08-12 12:46:28 +010025import android.app.Service;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070026import android.content.ComponentName;
27import android.content.Context;
28import android.content.Intent;
29import android.content.ServiceConnection;
Robin Lee39087b12015-05-05 15:57:17 +010030import android.net.Uri;
Jeff Sharkey0a17db12016-11-04 11:23:46 -060031import android.os.Binder;
Chad Brubaker721afae2016-07-08 11:06:09 -070032import android.os.Build;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070033import android.os.IBinder;
34import android.os.Looper;
Robin Lee306fe082014-06-19 14:04:24 +000035import android.os.Process;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070036import android.os.RemoteException;
Robin Lee306fe082014-06-19 14:04:24 +000037import android.os.UserHandle;
Alex Klyubin4a0ff7c2015-06-09 13:25:20 -070038import android.security.keystore.AndroidKeyStoreProvider;
Alex Klyubin3f8d4d82015-05-13 09:15:00 -070039import android.security.keystore.KeyProperties;
40
Brian Carlstromb9a07c12011-04-11 09:03:51 -070041import java.io.ByteArrayInputStream;
Brian Carlstromd7524722011-05-17 16:20:36 -070042import java.io.Closeable;
Eran Messeri23c438d2017-11-23 17:20:52 +000043import java.security.KeyPair;
Brian Carlstrom93201f52011-06-09 15:05:35 -070044import java.security.Principal;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070045import java.security.PrivateKey;
Alex Klyubin4a0ff7c2015-06-09 13:25:20 -070046import java.security.UnrecoverableKeyException;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070047import java.security.cert.Certificate;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070048import java.security.cert.CertificateException;
49import java.security.cert.CertificateFactory;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070050import java.security.cert.X509Certificate;
Rubin Xub4365912016-03-23 12:13:22 +000051import java.util.ArrayList;
52import java.util.Collection;
Brian Carlstromdb93b782011-07-01 00:12:17 -070053import java.util.List;
Kenny Rootb91773b2013-09-05 13:03:16 -070054import java.util.Locale;
Brian Carlstrom8e9929c2011-05-17 00:40:28 -070055import java.util.concurrent.BlockingQueue;
56import java.util.concurrent.LinkedBlockingQueue;
Kenny Root5423e682011-11-14 08:43:13 -080057
Kenny Root12e75222013-04-23 22:34:24 -070058import com.android.org.conscrypt.TrustedCertificateStore;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070059
60/**
Brian Carlstrom93201f52011-06-09 15:05:35 -070061 * The {@code KeyChain} class provides access to private keys and
62 * their corresponding certificate chains in credential storage.
63 *
64 * <p>Applications accessing the {@code KeyChain} normally go through
65 * these steps:
66 *
67 * <ol>
68 *
69 * <li>Receive a callback from an {@link javax.net.ssl.X509KeyManager
70 * X509KeyManager} that a private key is requested.
71 *
72 * <li>Call {@link #choosePrivateKeyAlias
73 * choosePrivateKeyAlias} to allow the user to select from a
74 * list of currently available private keys and corresponding
75 * certificate chains. The chosen alias will be returned by the
76 * callback {@link KeyChainAliasCallback#alias}, or null if no private
77 * key is available or the user cancels the request.
78 *
79 * <li>Call {@link #getPrivateKey} and {@link #getCertificateChain} to
80 * retrieve the credentials to return to the corresponding {@link
81 * javax.net.ssl.X509KeyManager} callbacks.
82 *
83 * </ol>
84 *
85 * <p>An application may remember the value of a selected alias to
86 * avoid prompting the user with {@link #choosePrivateKeyAlias
87 * choosePrivateKeyAlias} on subsequent connections. If the alias is
88 * no longer valid, null will be returned on lookups using that value
Brian Carlstromca43c452011-06-29 18:53:17 -070089 *
90 * <p>An application can request the installation of private keys and
91 * certificates via the {@code Intent} provided by {@link
92 * #createInstallIntent}. Private keys installed via this {@code
93 * Intent} will be accessible via {@link #choosePrivateKeyAlias} while
94 * Certificate Authority (CA) certificates will be trusted by all
95 * applications through the default {@code X509TrustManager}.
Brian Carlstromb9a07c12011-04-11 09:03:51 -070096 */
Brian Carlstrom93201f52011-06-09 15:05:35 -070097// TODO reference intent for credential installation when public
Brian Carlstromb9a07c12011-04-11 09:03:51 -070098public final class KeyChain {
99
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700100 /**
101 * @hide Also used by KeyChainService implementation
102 */
103 public static final String ACCOUNT_TYPE = "com.android.keychain";
104
105 /**
Kenny Roota3659062014-03-17 16:21:53 -0700106 * Package name for KeyChain chooser.
107 */
108 private static final String KEYCHAIN_PACKAGE = "com.android.keychain";
109
110 /**
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700111 * Action to bring up the KeyChainActivity
112 */
113 private static final String ACTION_CHOOSER = "com.android.keychain.CHOOSER";
114
115 /**
Kenny Root1a88d832014-02-07 09:12:48 -0800116 * Package name for the Certificate Installer.
117 */
118 private static final String CERT_INSTALLER_PACKAGE = "com.android.certinstaller";
119
120 /**
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700121 * Extra for use with {@link #ACTION_CHOOSER}
Brian Carlstromba1a6672011-05-24 21:54:37 -0700122 * @hide Also used by KeyChainActivity implementation
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700123 */
Brian Carlstromba1a6672011-05-24 21:54:37 -0700124 public static final String EXTRA_RESPONSE = "response";
125
126 /**
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700127 * Extra for use with {@link #ACTION_CHOOSER}
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700128 * @hide Also used by KeyChainActivity implementation
129 */
Robin Lee39087b12015-05-05 15:57:17 +0100130 public static final String EXTRA_URI = "uri";
Robin Lee3798ed52015-02-03 17:55:31 +0000131
132 /**
133 * Extra for use with {@link #ACTION_CHOOSER}
134 * @hide Also used by KeyChainActivity implementation
135 */
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700136 public static final String EXTRA_ALIAS = "alias";
137
138 /**
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700139 * Extra for use with {@link #ACTION_CHOOSER}
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700140 * @hide Also used by KeyChainActivity implementation
141 */
142 public static final String EXTRA_SENDER = "sender";
143
144 /**
Selim Gurun93ba4fe2012-02-14 11:48:49 -0800145 * Action to bring up the CertInstaller.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700146 */
147 private static final String ACTION_INSTALL = "android.credentials.INSTALL";
148
149 /**
150 * Optional extra to specify a {@code String} credential name on
151 * the {@code Intent} returned by {@link #createInstallIntent}.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700152 */
153 // Compatible with old com.android.certinstaller.CredentialHelper.CERT_NAME_KEY
154 public static final String EXTRA_NAME = "name";
155
156 /**
157 * Optional extra to specify an X.509 certificate to install on
158 * the {@code Intent} returned by {@link #createInstallIntent}.
159 * The extra value should be a PEM or ASN.1 DER encoded {@code
160 * byte[]}. An {@link X509Certificate} can be converted to DER
161 * encoded bytes with {@link X509Certificate#getEncoded}.
162 *
163 * <p>{@link #EXTRA_NAME} may be used to provide a default alias
164 * name for the installed certificate.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700165 */
166 // Compatible with old android.security.Credentials.CERTIFICATE
167 public static final String EXTRA_CERTIFICATE = "CERT";
168
169 /**
170 * Optional extra for use with the {@code Intent} returned by
171 * {@link #createInstallIntent} to specify a PKCS#12 key store to
172 * install. The extra value should be a {@code byte[]}. The bytes
173 * may come from an external source or be generated with {@link
Brian Carlstromca43c452011-06-29 18:53:17 -0700174 * java.security.KeyStore#store} on a "PKCS12" instance.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700175 *
176 * <p>The user will be prompted for the password to load the key store.
177 *
178 * <p>The key store will be scanned for {@link
179 * java.security.KeyStore.PrivateKeyEntry} entries and both the
180 * private key and associated certificate chain will be installed.
181 *
182 * <p>{@link #EXTRA_NAME} may be used to provide a default alias
183 * name for the installed credentials.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700184 */
185 // Compatible with old android.security.Credentials.PKCS12
186 public static final String EXTRA_PKCS12 = "PKCS12";
187
Selim Gurun93ba4fe2012-02-14 11:48:49 -0800188 /**
Selim Gurun93ba4fe2012-02-14 11:48:49 -0800189 * Broadcast Action: Indicates the trusted storage has changed. Sent when
190 * one of this happens:
191 *
192 * <ul>
193 * <li>a new CA is added,
194 * <li>an existing CA is removed or disabled,
195 * <li>a disabled CA is enabled,
196 * <li>trusted storage is reset (all user certs are cleared),
197 * <li>when permission to access a private key is changed.
198 * </ul>
Chad Brubaker4de59ef2016-05-02 13:17:31 -0700199 *
Chad Brubakerdbf01c12016-07-25 14:54:39 -0700200 * @deprecated Use {@link #ACTION_KEYCHAIN_CHANGED}, {@link #ACTION_TRUST_STORE_CHANGED} or
Chad Brubaker721afae2016-07-08 11:06:09 -0700201 * {@link #ACTION_KEY_ACCESS_CHANGED}. Apps that target a version higher than
Chad Brubaker8b651bf2017-03-23 09:26:09 -0700202 * {@link Build.VERSION_CODES#N_MR1} will only receive this broadcast if they register for it
203 * at runtime.
Selim Gurun93ba4fe2012-02-14 11:48:49 -0800204 */
Jeff Sharkey0f3f60b2017-04-24 18:06:20 -0600205 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
Selim Gurun93ba4fe2012-02-14 11:48:49 -0800206 public static final String ACTION_STORAGE_CHANGED = "android.security.STORAGE_CHANGED";
207
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700208 /**
Chad Brubaker4de59ef2016-05-02 13:17:31 -0700209 * Broadcast Action: Indicates the contents of the keychain has changed. Sent when a KeyChain
210 * entry is added, modified or removed.
211 */
Jeff Sharkey0f3f60b2017-04-24 18:06:20 -0600212 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
Chad Brubaker4de59ef2016-05-02 13:17:31 -0700213 public static final String ACTION_KEYCHAIN_CHANGED = "android.security.action.KEYCHAIN_CHANGED";
214
215 /**
216 * Broadcast Action: Indicates the contents of the trusted certificate store has changed. Sent
217 * when one the following occurs:
218 *
219 * <ul>
220 * <li>A pre-installed CA is disabled or re-enabled</li>
221 * <li>A CA is added or removed from the trust store</li>
222 * </ul>
223 */
Jeff Sharkey0f3f60b2017-04-24 18:06:20 -0600224 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
Chad Brubaker4de59ef2016-05-02 13:17:31 -0700225 public static final String ACTION_TRUST_STORE_CHANGED =
226 "android.security.action.TRUST_STORE_CHANGED";
227
228 /**
229 * Broadcast Action: Indicates that the access permissions for a private key have changed.
230 *
231 */
Jeff Sharkey0f3f60b2017-04-24 18:06:20 -0600232 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
Chad Brubaker4de59ef2016-05-02 13:17:31 -0700233 public static final String ACTION_KEY_ACCESS_CHANGED =
234 "android.security.action.KEY_ACCESS_CHANGED";
235
236 /**
237 * Used as a String extra field in {@link #ACTION_KEY_ACCESS_CHANGED} to supply the alias of
238 * the key.
239 */
240 public static final String EXTRA_KEY_ALIAS = "android.security.extra.KEY_ALIAS";
241
242 /**
243 * Used as a boolean extra field in {@link #ACTION_KEY_ACCESS_CHANGED} to supply if the key is
244 * accessible to the application.
245 */
246 public static final String EXTRA_KEY_ACCESSIBLE = "android.security.extra.KEY_ACCESSIBLE";
247
248 /**
Eran Messeri61692392018-03-26 16:43:14 +0100249 * Indicates that a call to {@link #generateKeyPair} was successful.
250 * @hide
251 */
252 public static final int KEY_GEN_SUCCESS = 0;
253
254 /**
255 * An alias was missing from the key specifications when calling {@link #generateKeyPair}.
256 * @hide
257 */
258 public static final int KEY_GEN_MISSING_ALIAS = 1;
259
260 /**
261 * A key attestation challenge was provided to {@link #generateKeyPair}, but it shouldn't
262 * have been provided.
263 * @hide
264 */
265 public static final int KEY_GEN_SUPERFLUOUS_ATTESTATION_CHALLENGE = 2;
266
267 /**
268 * Algorithm not supported by {@link #generateKeyPair}
269 * @hide
270 */
271 public static final int KEY_GEN_NO_SUCH_ALGORITHM = 3;
272
273 /**
274 * Invalid algorithm parameters when calling {@link #generateKeyPair}
275 * @hide
276 */
277 public static final int KEY_GEN_INVALID_ALGORITHM_PARAMETERS = 4;
278
279 /**
280 * Keystore is not available when calling {@link #generateKeyPair}
281 * @hide
282 */
283 public static final int KEY_GEN_NO_KEYSTORE_PROVIDER = 5;
284
285 /**
286 * General failure while calling {@link #generateKeyPair}
287 * @hide
288 */
289 public static final int KEY_GEN_FAILURE = 6;
290
291 /**
292 * Successful call to {@link #attestKey}
293 * @hide
294 */
295 public static final int KEY_ATTESTATION_SUCCESS = 0;
296
297 /**
298 * Attestation challenge missing when calling {@link #attestKey}
299 * @hide
300 */
301 public static final int KEY_ATTESTATION_MISSING_CHALLENGE = 1;
302
303 /**
304 * The caller requested Device ID attestation when calling {@link #attestKey}, but has no
305 * permissions to get device identifiers.
306 * @hide
307 */
308 public static final int KEY_ATTESTATION_CANNOT_COLLECT_DATA = 2;
309
310 /**
311 * The underlying hardware does not support Device ID attestation or cannot attest to the
312 * identifiers that are stored on the device. This indicates permanent inability
313 * to get attestation records on the device.
314 * @hide
315 */
316 public static final int KEY_ATTESTATION_CANNOT_ATTEST_IDS = 3;
317
318 /**
319 * General failure when calling {@link #attestKey}
320 * @hide
321 */
322 public static final int KEY_ATTESTATION_FAILURE = 4;
323
324 /**
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700325 * Returns an {@code Intent} that can be used for credential
326 * installation. The intent may be used without any extras, in
327 * which case the user will be able to install credentials from
328 * their own source.
329 *
330 * <p>Alternatively, {@link #EXTRA_CERTIFICATE} or {@link
331 * #EXTRA_PKCS12} maybe used to specify the bytes of an X.509
332 * certificate or a PKCS#12 key store for installation. These
Brian Carlstromca43c452011-06-29 18:53:17 -0700333 * extras may be combined with {@link #EXTRA_NAME} to provide a
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700334 * default alias name for credentials being installed.
335 *
336 * <p>When used with {@link Activity#startActivityForResult},
337 * {@link Activity#RESULT_OK} will be returned if a credential was
338 * successfully installed, otherwise {@link
339 * Activity#RESULT_CANCELED} will be returned.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700340 */
Alex Klyubin54bb1592015-05-11 12:30:03 -0700341 @NonNull
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700342 public static Intent createInstallIntent() {
343 Intent intent = new Intent(ACTION_INSTALL);
Kenny Root1a88d832014-02-07 09:12:48 -0800344 intent.setClassName(CERT_INSTALLER_PACKAGE,
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700345 "com.android.certinstaller.CertInstallerMain");
346 return intent;
347 }
348
349 /**
Brian Carlstromba1a6672011-05-24 21:54:37 -0700350 * Launches an {@code Activity} for the user to select the alias
351 * for a private key and certificate pair for authentication. The
352 * selected alias or null will be returned via the
Brian Carlstrom93201f52011-06-09 15:05:35 -0700353 * KeyChainAliasCallback callback.
354 *
Robin Lee3798ed52015-02-03 17:55:31 +0000355 * <p>The device or profile owner can intercept this before the activity
356 * is shown, to pick a specific private key alias.
357 *
358 * <p>{@code keyTypes} and {@code issuers} may be used to
359 * highlight suggested choices to the user, although to cope with
360 * sometimes erroneous values provided by servers, the user may be
361 * able to override these suggestions.
362 *
363 * <p>{@code host} and {@code port} may be used to give the user
364 * more context about the server requesting the credentials.
365 *
366 * <p>{@code alias} allows the chooser to preselect an existing
367 * alias which will still be subject to user confirmation.
368 *
369 * @param activity The {@link Activity} context to use for
370 * launching the new sub-Activity to prompt the user to select
371 * a private key; used only to call startActivity(); must not
372 * be null.
373 * @param response Callback to invoke when the request completes;
Mike Harriscd0eb712018-04-26 15:20:10 -0700374 * must not be null.
Robin Lee3798ed52015-02-03 17:55:31 +0000375 * @param keyTypes The acceptable types of asymmetric keys such as
Mike Harriscd0eb712018-04-26 15:20:10 -0700376 * "RSA" or "DSA", or null.
Robin Lee3798ed52015-02-03 17:55:31 +0000377 * @param issuers The acceptable certificate issuers for the
378 * certificate matching the private key, or null.
379 * @param host The host name of the server requesting the
380 * certificate, or null if unavailable.
381 * @param port The port number of the server requesting the
382 * certificate, or -1 if unavailable.
383 * @param alias The alias to preselect if available, or null if
384 * unavailable.
385 */
Alex Klyubin54bb1592015-05-11 12:30:03 -0700386 public static void choosePrivateKeyAlias(@NonNull Activity activity,
387 @NonNull KeyChainAliasCallback response,
Mike Harriscd0eb712018-04-26 15:20:10 -0700388 @Nullable @KeyProperties.KeyAlgorithmEnum String[] keyTypes,
389 @Nullable Principal[] issuers,
Alex Klyubin54bb1592015-05-11 12:30:03 -0700390 @Nullable String host, int port, @Nullable String alias) {
Robin Lee39087b12015-05-05 15:57:17 +0100391 Uri uri = null;
392 if (host != null) {
393 uri = new Uri.Builder()
394 .authority(host + (port != -1 ? ":" + port : ""))
395 .build();
396 }
397 choosePrivateKeyAlias(activity, response, keyTypes, issuers, uri, alias);
Robin Lee3798ed52015-02-03 17:55:31 +0000398 }
399
400 /**
401 * Launches an {@code Activity} for the user to select the alias
402 * for a private key and certificate pair for authentication. The
403 * selected alias or null will be returned via the
404 * KeyChainAliasCallback callback.
405 *
406 * <p>The device or profile owner can intercept this before the activity
407 * is shown, to pick a specific private key alias.</p>
408 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700409 * <p>{@code keyTypes} and {@code issuers} may be used to
410 * highlight suggested choices to the user, although to cope with
411 * sometimes erroneous values provided by servers, the user may be
412 * able to override these suggestions.
413 *
414 * <p>{@code host} and {@code port} may be used to give the user
415 * more context about the server requesting the credentials.
416 *
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700417 * <p>{@code alias} allows the chooser to preselect an existing
418 * alias which will still be subject to user confirmation.
419 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700420 * @param activity The {@link Activity} context to use for
421 * launching the new sub-Activity to prompt the user to select
422 * a private key; used only to call startActivity(); must not
423 * be null.
424 * @param response Callback to invoke when the request completes;
Mike Harriscd0eb712018-04-26 15:20:10 -0700425 * must not be null.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700426 * @param keyTypes The acceptable types of asymmetric keys such as
Mike Harriscd0eb712018-04-26 15:20:10 -0700427 * "EC" or "RSA", or null.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700428 * @param issuers The acceptable certificate issuers for the
429 * certificate matching the private key, or null.
Robin Lee39087b12015-05-05 15:57:17 +0100430 * @param uri The full URI the server is requesting the certificate
Robin Lee3798ed52015-02-03 17:55:31 +0000431 * for, or null if unavailable.
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700432 * @param alias The alias to preselect if available, or null if
433 * unavailable.
Brian Carlstromba1a6672011-05-24 21:54:37 -0700434 */
Alex Klyubin54bb1592015-05-11 12:30:03 -0700435 public static void choosePrivateKeyAlias(@NonNull Activity activity,
436 @NonNull KeyChainAliasCallback response,
Mike Harriscd0eb712018-04-26 15:20:10 -0700437 @Nullable @KeyProperties.KeyAlgorithmEnum String[] keyTypes,
438 @Nullable Principal[] issuers,
Robin Lee39087b12015-05-05 15:57:17 +0100439 @Nullable Uri uri, @Nullable String alias) {
Brian Carlstrom93201f52011-06-09 15:05:35 -0700440 /*
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700441 * TODO currently keyTypes, issuers are unused. They are meant
442 * to follow the semantics and purpose of X509KeyManager
443 * method arguments.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700444 *
445 * keyTypes would allow the list to be filtered and typically
446 * will be set correctly by the server. In practice today,
Alex Klyubincd2329d2015-01-14 16:45:51 -0800447 * most all users will want only RSA or EC, and usually
Brian Carlstrom93201f52011-06-09 15:05:35 -0700448 * only a small number of certs will be available.
449 *
450 * issuers is typically not useful. Some servers historically
451 * will send the entire list of public CAs known to the
452 * server. Others will send none. If this is used, if there
453 * are no matches after applying the constraint, it should be
454 * ignored.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700455 */
Brian Carlstromba1a6672011-05-24 21:54:37 -0700456 if (activity == null) {
457 throw new NullPointerException("activity == null");
458 }
459 if (response == null) {
460 throw new NullPointerException("response == null");
461 }
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700462 Intent intent = new Intent(ACTION_CHOOSER);
Kenny Roota3659062014-03-17 16:21:53 -0700463 intent.setPackage(KEYCHAIN_PACKAGE);
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700464 intent.putExtra(EXTRA_RESPONSE, new AliasResponse(response));
Robin Lee39087b12015-05-05 15:57:17 +0100465 intent.putExtra(EXTRA_URI, uri);
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700466 intent.putExtra(EXTRA_ALIAS, alias);
467 // the PendingIntent is used to get calling package name
468 intent.putExtra(EXTRA_SENDER, PendingIntent.getActivity(activity, 0, new Intent(), 0));
Brian Carlstromba1a6672011-05-24 21:54:37 -0700469 activity.startActivity(intent);
470 }
471
Brian Carlstrom93201f52011-06-09 15:05:35 -0700472 private static class AliasResponse extends IKeyChainAliasCallback.Stub {
Brian Carlstrom93201f52011-06-09 15:05:35 -0700473 private final KeyChainAliasCallback keyChainAliasResponse;
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700474 private AliasResponse(KeyChainAliasCallback keyChainAliasResponse) {
Brian Carlstromba1a6672011-05-24 21:54:37 -0700475 this.keyChainAliasResponse = keyChainAliasResponse;
476 }
477 @Override public void alias(String alias) {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700478 keyChainAliasResponse.alias(alias);
Brian Carlstromba1a6672011-05-24 21:54:37 -0700479 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700480 }
481
482 /**
Brian Carlstromba1a6672011-05-24 21:54:37 -0700483 * Returns the {@code PrivateKey} for the requested alias, or null
Robin Lee3a435f02015-12-21 12:06:04 +0000484 * if there is no result.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700485 *
Robin Lee59e3baa2015-06-30 10:48:06 -0700486 * <p> This method may block while waiting for a connection to another process, and must never
487 * be called from the main thread.
Robin Leeda236182016-08-12 12:46:28 +0100488 * <p> As {@link Activity} and {@link Service} contexts are short-lived and can be destroyed
489 * at any time from the main thread, it is safer to rely on a long-lived context such as one
490 * returned from {@link Context#getApplicationContext()}.
Robin Lee59e3baa2015-06-30 10:48:06 -0700491 *
492 * @param alias The alias of the desired private key, typically returned via
493 * {@link KeyChainAliasCallback#alias}.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700494 * @throws KeyChainException if the alias was valid but there was some problem accessing it.
Robin Lee59e3baa2015-06-30 10:48:06 -0700495 * @throws IllegalStateException if called from the main thread.
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700496 */
Robin Lee59e3baa2015-06-30 10:48:06 -0700497 @Nullable @WorkerThread
Alex Klyubin54bb1592015-05-11 12:30:03 -0700498 public static PrivateKey getPrivateKey(@NonNull Context context, @NonNull String alias)
Brian Carlstrom93201f52011-06-09 15:05:35 -0700499 throws KeyChainException, InterruptedException {
Eran Messeri23c438d2017-11-23 17:20:52 +0000500 KeyPair keyPair = getKeyPair(context, alias);
501 if (keyPair != null) {
502 return keyPair.getPrivate();
503 }
504
505 return null;
506 }
507
508 /** @hide */
509 @Nullable @WorkerThread
510 public static KeyPair getKeyPair(@NonNull Context context, @NonNull String alias)
511 throws KeyChainException, InterruptedException {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700512 if (alias == null) {
513 throw new NullPointerException("alias == null");
514 }
Shawn Willdendea66142016-11-16 06:01:06 -0700515 if (context == null) {
516 throw new NullPointerException("context == null");
517 }
Robin Lee28d68b12016-07-22 16:32:32 +0100518
519 final String keyId;
520 try (KeyChainConnection keyChainConnection = bind(context.getApplicationContext())) {
521 keyId = keyChainConnection.getService().requestPrivateKey(alias);
Brian Carlstrom93201f52011-06-09 15:05:35 -0700522 } catch (RemoteException e) {
523 throw new KeyChainException(e);
524 } catch (RuntimeException e) {
525 // only certain RuntimeExceptions can be propagated across the IKeyChainService call
526 throw new KeyChainException(e);
Robin Lee28d68b12016-07-22 16:32:32 +0100527 }
528
529 if (keyId == null) {
530 return null;
531 } else {
532 try {
Eran Messeri23c438d2017-11-23 17:20:52 +0000533 return AndroidKeyStoreProvider.loadAndroidKeyStoreKeyPairFromKeystore(
Robin Lee28d68b12016-07-22 16:32:32 +0100534 KeyStore.getInstance(), keyId, KeyStore.UID_SELF);
535 } catch (RuntimeException | UnrecoverableKeyException e) {
536 throw new KeyChainException(e);
537 }
Brian Carlstromba1a6672011-05-24 21:54:37 -0700538 }
539 }
540
541 /**
542 * Returns the {@code X509Certificate} chain for the requested
Rubin Xub4365912016-03-23 12:13:22 +0000543 * alias, or null if there is no result.
544 * <p>
545 * <strong>Note:</strong> If a certificate chain was explicitly specified when the alias was
546 * installed, this method will return that chain. If only the client certificate was specified
547 * at the installation time, this method will try to build a certificate chain using all
548 * available trust anchors (preinstalled and user-added).
Brian Carlstrom93201f52011-06-09 15:05:35 -0700549 *
Robin Lee59e3baa2015-06-30 10:48:06 -0700550 * <p> This method may block while waiting for a connection to another process, and must never
551 * be called from the main thread.
Robin Leeda236182016-08-12 12:46:28 +0100552 * <p> As {@link Activity} and {@link Service} contexts are short-lived and can be destroyed
553 * at any time from the main thread, it is safer to rely on a long-lived context such as one
554 * returned from {@link Context#getApplicationContext()}.
Robin Lee59e3baa2015-06-30 10:48:06 -0700555 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700556 * @param alias The alias of the desired certificate chain, typically
557 * returned via {@link KeyChainAliasCallback#alias}.
558 * @throws KeyChainException if the alias was valid but there was some problem accessing it.
Robin Lee59e3baa2015-06-30 10:48:06 -0700559 * @throws IllegalStateException if called from the main thread.
Brian Carlstromba1a6672011-05-24 21:54:37 -0700560 */
Robin Lee59e3baa2015-06-30 10:48:06 -0700561 @Nullable @WorkerThread
Alex Klyubin54bb1592015-05-11 12:30:03 -0700562 public static X509Certificate[] getCertificateChain(@NonNull Context context,
563 @NonNull String alias) throws KeyChainException, InterruptedException {
Brian Carlstromba1a6672011-05-24 21:54:37 -0700564 if (alias == null) {
565 throw new NullPointerException("alias == null");
566 }
Kenny Root0150e482013-02-13 15:22:50 -0800567
Robin Lee28d68b12016-07-22 16:32:32 +0100568 final byte[] certificateBytes;
569 final byte[] certChainBytes;
570 try (KeyChainConnection keyChainConnection = bind(context.getApplicationContext())) {
571 IKeyChainService keyChainService = keyChainConnection.getService();
572 certificateBytes = keyChainService.getCertificate(alias);
Kenny Root0150e482013-02-13 15:22:50 -0800573 if (certificateBytes == null) {
574 return null;
575 }
Robin Lee28d68b12016-07-22 16:32:32 +0100576 certChainBytes = keyChainService.getCaCertificates(alias);
577 } catch (RemoteException e) {
578 throw new KeyChainException(e);
579 } catch (RuntimeException e) {
580 // only certain RuntimeExceptions can be propagated across the IKeyChainService call
581 throw new KeyChainException(e);
582 }
583
584 try {
Rubin Xub4365912016-03-23 12:13:22 +0000585 X509Certificate leafCert = toCertificate(certificateBytes);
Rubin Xub4365912016-03-23 12:13:22 +0000586 // If the keypair is installed with a certificate chain by either
587 // DevicePolicyManager.installKeyPair or CertInstaller, return that chain.
588 if (certChainBytes != null && certChainBytes.length != 0) {
589 Collection<X509Certificate> chain = toCertificates(certChainBytes);
590 ArrayList<X509Certificate> fullChain = new ArrayList<>(chain.size() + 1);
591 fullChain.add(leafCert);
592 fullChain.addAll(chain);
593 return fullChain.toArray(new X509Certificate[fullChain.size()]);
594 } else {
595 // If there isn't a certificate chain, either due to a pre-existing keypair
596 // installed before N, or no chain is explicitly installed under the new logic,
597 // fall back to old behavior of constructing the chain from trusted credentials.
598 //
599 // This logic exists to maintain old behaviour for already installed keypair, at
600 // the cost of potentially returning extra certificate chain for new clients who
601 // explicitly installed only the client certificate without a chain. The latter
602 // case is actually no different from pre-N behaviour of getCertificateChain(),
603 // in that sense this change introduces no regression. Besides the returned chain
604 // is still valid so the consumer of the chain should have no problem verifying it.
605 TrustedCertificateStore store = new TrustedCertificateStore();
606 List<X509Certificate> chain = store.getCertificateChain(leafCert);
607 return chain.toArray(new X509Certificate[chain.size()]);
608 }
Robin Lee28d68b12016-07-22 16:32:32 +0100609 } catch (CertificateException | RuntimeException e) {
Kenny Rootcfba6a02013-05-06 15:00:58 -0700610 throw new KeyChainException(e);
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700611 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700612 }
613
Kenny Rootbf556ac2013-04-01 15:10:22 -0700614 /**
615 * Returns {@code true} if the current device's {@code KeyChain} supports a
616 * specific {@code PrivateKey} type indicated by {@code algorithm} (e.g.,
617 * "RSA").
618 */
Alex Klyubin4d5443f2015-05-06 15:43:52 -0700619 public static boolean isKeyAlgorithmSupported(
Alex Klyubin3f8d4d82015-05-13 09:15:00 -0700620 @NonNull @KeyProperties.KeyAlgorithmEnum String algorithm) {
Kenny Rootb91773b2013-09-05 13:03:16 -0700621 final String algUpper = algorithm.toUpperCase(Locale.US);
Alex Klyubin3f8d4d82015-05-13 09:15:00 -0700622 return KeyProperties.KEY_ALGORITHM_EC.equals(algUpper)
623 || KeyProperties.KEY_ALGORITHM_RSA.equals(algUpper);
Kenny Rootbf556ac2013-04-01 15:10:22 -0700624 }
625
626 /**
627 * Returns {@code true} if the current device's {@code KeyChain} binds any
628 * {@code PrivateKey} of the given {@code algorithm} to the device once
629 * imported or generated. This can be used to tell if there is special
630 * hardware support that can be used to bind keys to the device in a way
631 * that makes it non-exportable.
Alex Klyubin469cbf52015-06-04 12:36:27 -0700632 *
633 * @deprecated Whether the key is bound to the secure hardware is known only
634 * once the key has been imported. To find out, use:
635 * <pre>{@code
636 * PrivateKey key = ...; // private key from KeyChain
637 *
638 * KeyFactory keyFactory =
639 * KeyFactory.getInstance(key.getAlgorithm(), "AndroidKeyStore");
640 * KeyInfo keyInfo = keyFactory.getKeySpec(key, KeyInfo.class);
Neil Fuller71fbb812015-11-30 09:51:33 +0000641 * if (keyInfo.isInsideSecureHardware()) {
Alex Klyubin469cbf52015-06-04 12:36:27 -0700642 * // The key is bound to the secure hardware of this Android
Neil Fuller71fbb812015-11-30 09:51:33 +0000643 * }}</pre>
Kenny Rootbf556ac2013-04-01 15:10:22 -0700644 */
Alex Klyubin469cbf52015-06-04 12:36:27 -0700645 @Deprecated
Alex Klyubin4d5443f2015-05-06 15:43:52 -0700646 public static boolean isBoundKeyAlgorithm(
Alex Klyubin3f8d4d82015-05-13 09:15:00 -0700647 @NonNull @KeyProperties.KeyAlgorithmEnum String algorithm) {
Kenny Root5b7e90a2013-04-02 11:23:41 -0700648 if (!isKeyAlgorithmSupported(algorithm)) {
Kenny Rootbf556ac2013-04-01 15:10:22 -0700649 return false;
650 }
651
Kenny Rootb91773b2013-09-05 13:03:16 -0700652 return KeyStore.getInstance().isHardwareBacked(algorithm);
Kenny Rootbf556ac2013-04-01 15:10:22 -0700653 }
654
Zoltan Szatmary-Banf0ae1352014-08-18 10:48:33 +0100655 /** @hide */
Alex Klyubin54bb1592015-05-11 12:30:03 -0700656 @NonNull
657 public static X509Certificate toCertificate(@NonNull byte[] bytes) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700658 if (bytes == null) {
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700659 throw new IllegalArgumentException("bytes == null");
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700660 }
661 try {
662 CertificateFactory certFactory = CertificateFactory.getInstance("X.509");
663 Certificate cert = certFactory.generateCertificate(new ByteArrayInputStream(bytes));
664 return (X509Certificate) cert;
665 } catch (CertificateException e) {
666 throw new AssertionError(e);
667 }
668 }
669
Rubin Xub4365912016-03-23 12:13:22 +0000670 /** @hide */
671 @NonNull
672 public static Collection<X509Certificate> toCertificates(@NonNull byte[] bytes) {
673 if (bytes == null) {
674 throw new IllegalArgumentException("bytes == null");
675 }
676 try {
677 CertificateFactory certFactory = CertificateFactory.getInstance("X.509");
678 return (Collection<X509Certificate>) certFactory.generateCertificates(
679 new ByteArrayInputStream(bytes));
680 } catch (CertificateException e) {
681 throw new AssertionError(e);
682 }
683 }
684
Brian Carlstromd7524722011-05-17 16:20:36 -0700685 /**
686 * @hide for reuse by CertInstaller and Settings.
687 * @see KeyChain#bind
688 */
Robin Lee7f5c91c2017-02-08 21:27:02 +0000689 public static class KeyChainConnection implements Closeable {
Brian Carlstromd7524722011-05-17 16:20:36 -0700690 private final Context context;
691 private final ServiceConnection serviceConnection;
692 private final IKeyChainService service;
phweisse375fc42017-04-19 20:15:06 +0200693 protected KeyChainConnection(Context context,
694 ServiceConnection serviceConnection,
695 IKeyChainService service) {
Brian Carlstromd7524722011-05-17 16:20:36 -0700696 this.context = context;
697 this.serviceConnection = serviceConnection;
698 this.service = service;
699 }
700 @Override public void close() {
701 context.unbindService(serviceConnection);
702 }
703 public IKeyChainService getService() {
704 return service;
705 }
706 }
707
708 /**
709 * @hide for reuse by CertInstaller and Settings.
710 *
711 * Caller should call unbindService on the result when finished.
712 */
Robin Lee59e3baa2015-06-30 10:48:06 -0700713 @WorkerThread
Alex Klyubin54bb1592015-05-11 12:30:03 -0700714 public static KeyChainConnection bind(@NonNull Context context) throws InterruptedException {
Robin Lee306fe082014-06-19 14:04:24 +0000715 return bindAsUser(context, Process.myUserHandle());
716 }
717
718 /**
719 * @hide
720 */
Robin Lee59e3baa2015-06-30 10:48:06 -0700721 @WorkerThread
Alex Klyubin54bb1592015-05-11 12:30:03 -0700722 public static KeyChainConnection bindAsUser(@NonNull Context context, UserHandle user)
Robin Lee306fe082014-06-19 14:04:24 +0000723 throws InterruptedException {
Brian Carlstromd7524722011-05-17 16:20:36 -0700724 if (context == null) {
725 throw new NullPointerException("context == null");
726 }
727 ensureNotOnMainThread(context);
728 final BlockingQueue<IKeyChainService> q = new LinkedBlockingQueue<IKeyChainService>(1);
729 ServiceConnection keyChainServiceConnection = new ServiceConnection() {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700730 volatile boolean mConnectedAtLeastOnce = false;
Brian Carlstromd7524722011-05-17 16:20:36 -0700731 @Override public void onServiceConnected(ComponentName name, IBinder service) {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700732 if (!mConnectedAtLeastOnce) {
733 mConnectedAtLeastOnce = true;
734 try {
Jeff Sharkey0a17db12016-11-04 11:23:46 -0600735 q.put(IKeyChainService.Stub.asInterface(Binder.allowBlocking(service)));
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700736 } catch (InterruptedException e) {
737 // will never happen, since the queue starts with one available slot
738 }
Brian Carlstromd7524722011-05-17 16:20:36 -0700739 }
740 }
741 @Override public void onServiceDisconnected(ComponentName name) {}
742 };
Maggie Benthallda51e682013-08-08 22:35:44 -0400743 Intent intent = new Intent(IKeyChainService.class.getName());
744 ComponentName comp = intent.resolveSystemService(context.getPackageManager(), 0);
745 intent.setComponent(comp);
Robin Lee21bcbc52016-02-29 18:55:35 +0000746 if (comp == null || !context.bindServiceAsUser(
747 intent, keyChainServiceConnection, Context.BIND_AUTO_CREATE, user)) {
Brian Carlstromd7524722011-05-17 16:20:36 -0700748 throw new AssertionError("could not bind to KeyChainService");
749 }
750 return new KeyChainConnection(context, keyChainServiceConnection, q.take());
751 }
752
Alex Klyubin54bb1592015-05-11 12:30:03 -0700753 private static void ensureNotOnMainThread(@NonNull Context context) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700754 Looper looper = Looper.myLooper();
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700755 if (looper != null && looper == context.getMainLooper()) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700756 throw new IllegalStateException(
757 "calling this from your main thread can lead to deadlock");
758 }
759 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700760}