blob: 46a7fa8d5e28f7d05b34f13e96fc9136bd6d4b46 [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;
374 * must not be null
375 * @param keyTypes The acceptable types of asymmetric keys such as
376 * "RSA" or "DSA", or a null array.
377 * @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,
Alex Klyubin3f8d4d82015-05-13 09:15:00 -0700388 @KeyProperties.KeyAlgorithmEnum String[] keyTypes, Principal[] issuers,
Alex Klyubin54bb1592015-05-11 12:30:03 -0700389 @Nullable String host, int port, @Nullable String alias) {
Robin Lee39087b12015-05-05 15:57:17 +0100390 Uri uri = null;
391 if (host != null) {
392 uri = new Uri.Builder()
393 .authority(host + (port != -1 ? ":" + port : ""))
394 .build();
395 }
396 choosePrivateKeyAlias(activity, response, keyTypes, issuers, uri, alias);
Robin Lee3798ed52015-02-03 17:55:31 +0000397 }
398
399 /**
400 * Launches an {@code Activity} for the user to select the alias
401 * for a private key and certificate pair for authentication. The
402 * selected alias or null will be returned via the
403 * KeyChainAliasCallback callback.
404 *
405 * <p>The device or profile owner can intercept this before the activity
406 * is shown, to pick a specific private key alias.</p>
407 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700408 * <p>{@code keyTypes} and {@code issuers} may be used to
409 * highlight suggested choices to the user, although to cope with
410 * sometimes erroneous values provided by servers, the user may be
411 * able to override these suggestions.
412 *
413 * <p>{@code host} and {@code port} may be used to give the user
414 * more context about the server requesting the credentials.
415 *
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700416 * <p>{@code alias} allows the chooser to preselect an existing
417 * alias which will still be subject to user confirmation.
418 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700419 * @param activity The {@link Activity} context to use for
420 * launching the new sub-Activity to prompt the user to select
421 * a private key; used only to call startActivity(); must not
422 * be null.
423 * @param response Callback to invoke when the request completes;
424 * must not be null
425 * @param keyTypes The acceptable types of asymmetric keys such as
Alex Klyubincd2329d2015-01-14 16:45:51 -0800426 * "EC" or "RSA", or a null array.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700427 * @param issuers The acceptable certificate issuers for the
428 * certificate matching the private key, or null.
Robin Lee39087b12015-05-05 15:57:17 +0100429 * @param uri The full URI the server is requesting the certificate
Robin Lee3798ed52015-02-03 17:55:31 +0000430 * for, or null if unavailable.
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700431 * @param alias The alias to preselect if available, or null if
432 * unavailable.
Brian Carlstromba1a6672011-05-24 21:54:37 -0700433 */
Alex Klyubin54bb1592015-05-11 12:30:03 -0700434 public static void choosePrivateKeyAlias(@NonNull Activity activity,
435 @NonNull KeyChainAliasCallback response,
Alex Klyubin3f8d4d82015-05-13 09:15:00 -0700436 @KeyProperties.KeyAlgorithmEnum String[] keyTypes, Principal[] issuers,
Robin Lee39087b12015-05-05 15:57:17 +0100437 @Nullable Uri uri, @Nullable String alias) {
Brian Carlstrom93201f52011-06-09 15:05:35 -0700438 /*
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700439 * TODO currently keyTypes, issuers are unused. They are meant
440 * to follow the semantics and purpose of X509KeyManager
441 * method arguments.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700442 *
443 * keyTypes would allow the list to be filtered and typically
444 * will be set correctly by the server. In practice today,
Alex Klyubincd2329d2015-01-14 16:45:51 -0800445 * most all users will want only RSA or EC, and usually
Brian Carlstrom93201f52011-06-09 15:05:35 -0700446 * only a small number of certs will be available.
447 *
448 * issuers is typically not useful. Some servers historically
449 * will send the entire list of public CAs known to the
450 * server. Others will send none. If this is used, if there
451 * are no matches after applying the constraint, it should be
452 * ignored.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700453 */
Brian Carlstromba1a6672011-05-24 21:54:37 -0700454 if (activity == null) {
455 throw new NullPointerException("activity == null");
456 }
457 if (response == null) {
458 throw new NullPointerException("response == null");
459 }
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700460 Intent intent = new Intent(ACTION_CHOOSER);
Kenny Roota3659062014-03-17 16:21:53 -0700461 intent.setPackage(KEYCHAIN_PACKAGE);
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700462 intent.putExtra(EXTRA_RESPONSE, new AliasResponse(response));
Robin Lee39087b12015-05-05 15:57:17 +0100463 intent.putExtra(EXTRA_URI, uri);
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700464 intent.putExtra(EXTRA_ALIAS, alias);
465 // the PendingIntent is used to get calling package name
466 intent.putExtra(EXTRA_SENDER, PendingIntent.getActivity(activity, 0, new Intent(), 0));
Brian Carlstromba1a6672011-05-24 21:54:37 -0700467 activity.startActivity(intent);
468 }
469
Brian Carlstrom93201f52011-06-09 15:05:35 -0700470 private static class AliasResponse extends IKeyChainAliasCallback.Stub {
Brian Carlstrom93201f52011-06-09 15:05:35 -0700471 private final KeyChainAliasCallback keyChainAliasResponse;
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700472 private AliasResponse(KeyChainAliasCallback keyChainAliasResponse) {
Brian Carlstromba1a6672011-05-24 21:54:37 -0700473 this.keyChainAliasResponse = keyChainAliasResponse;
474 }
475 @Override public void alias(String alias) {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700476 keyChainAliasResponse.alias(alias);
Brian Carlstromba1a6672011-05-24 21:54:37 -0700477 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700478 }
479
480 /**
Brian Carlstromba1a6672011-05-24 21:54:37 -0700481 * Returns the {@code PrivateKey} for the requested alias, or null
Robin Lee3a435f02015-12-21 12:06:04 +0000482 * if there is no result.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700483 *
Robin Lee59e3baa2015-06-30 10:48:06 -0700484 * <p> This method may block while waiting for a connection to another process, and must never
485 * be called from the main thread.
Robin Leeda236182016-08-12 12:46:28 +0100486 * <p> As {@link Activity} and {@link Service} contexts are short-lived and can be destroyed
487 * at any time from the main thread, it is safer to rely on a long-lived context such as one
488 * returned from {@link Context#getApplicationContext()}.
Robin Lee59e3baa2015-06-30 10:48:06 -0700489 *
490 * @param alias The alias of the desired private key, typically returned via
491 * {@link KeyChainAliasCallback#alias}.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700492 * @throws KeyChainException if the alias was valid but there was some problem accessing it.
Robin Lee59e3baa2015-06-30 10:48:06 -0700493 * @throws IllegalStateException if called from the main thread.
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700494 */
Robin Lee59e3baa2015-06-30 10:48:06 -0700495 @Nullable @WorkerThread
Alex Klyubin54bb1592015-05-11 12:30:03 -0700496 public static PrivateKey getPrivateKey(@NonNull Context context, @NonNull String alias)
Brian Carlstrom93201f52011-06-09 15:05:35 -0700497 throws KeyChainException, InterruptedException {
Eran Messeri23c438d2017-11-23 17:20:52 +0000498 KeyPair keyPair = getKeyPair(context, alias);
499 if (keyPair != null) {
500 return keyPair.getPrivate();
501 }
502
503 return null;
504 }
505
506 /** @hide */
507 @Nullable @WorkerThread
508 public static KeyPair getKeyPair(@NonNull Context context, @NonNull String alias)
509 throws KeyChainException, InterruptedException {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700510 if (alias == null) {
511 throw new NullPointerException("alias == null");
512 }
Shawn Willdendea66142016-11-16 06:01:06 -0700513 if (context == null) {
514 throw new NullPointerException("context == null");
515 }
Robin Lee28d68b12016-07-22 16:32:32 +0100516
517 final String keyId;
518 try (KeyChainConnection keyChainConnection = bind(context.getApplicationContext())) {
519 keyId = keyChainConnection.getService().requestPrivateKey(alias);
Brian Carlstrom93201f52011-06-09 15:05:35 -0700520 } catch (RemoteException e) {
521 throw new KeyChainException(e);
522 } catch (RuntimeException e) {
523 // only certain RuntimeExceptions can be propagated across the IKeyChainService call
524 throw new KeyChainException(e);
Robin Lee28d68b12016-07-22 16:32:32 +0100525 }
526
527 if (keyId == null) {
528 return null;
529 } else {
530 try {
Eran Messeri23c438d2017-11-23 17:20:52 +0000531 return AndroidKeyStoreProvider.loadAndroidKeyStoreKeyPairFromKeystore(
Robin Lee28d68b12016-07-22 16:32:32 +0100532 KeyStore.getInstance(), keyId, KeyStore.UID_SELF);
533 } catch (RuntimeException | UnrecoverableKeyException e) {
534 throw new KeyChainException(e);
535 }
Brian Carlstromba1a6672011-05-24 21:54:37 -0700536 }
537 }
538
539 /**
540 * Returns the {@code X509Certificate} chain for the requested
Rubin Xub4365912016-03-23 12:13:22 +0000541 * alias, or null if there is no result.
542 * <p>
543 * <strong>Note:</strong> If a certificate chain was explicitly specified when the alias was
544 * installed, this method will return that chain. If only the client certificate was specified
545 * at the installation time, this method will try to build a certificate chain using all
546 * available trust anchors (preinstalled and user-added).
Brian Carlstrom93201f52011-06-09 15:05:35 -0700547 *
Robin Lee59e3baa2015-06-30 10:48:06 -0700548 * <p> This method may block while waiting for a connection to another process, and must never
549 * be called from the main thread.
Robin Leeda236182016-08-12 12:46:28 +0100550 * <p> As {@link Activity} and {@link Service} contexts are short-lived and can be destroyed
551 * at any time from the main thread, it is safer to rely on a long-lived context such as one
552 * returned from {@link Context#getApplicationContext()}.
Robin Lee59e3baa2015-06-30 10:48:06 -0700553 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700554 * @param alias The alias of the desired certificate chain, typically
555 * returned via {@link KeyChainAliasCallback#alias}.
556 * @throws KeyChainException if the alias was valid but there was some problem accessing it.
Robin Lee59e3baa2015-06-30 10:48:06 -0700557 * @throws IllegalStateException if called from the main thread.
Brian Carlstromba1a6672011-05-24 21:54:37 -0700558 */
Robin Lee59e3baa2015-06-30 10:48:06 -0700559 @Nullable @WorkerThread
Alex Klyubin54bb1592015-05-11 12:30:03 -0700560 public static X509Certificate[] getCertificateChain(@NonNull Context context,
561 @NonNull String alias) throws KeyChainException, InterruptedException {
Brian Carlstromba1a6672011-05-24 21:54:37 -0700562 if (alias == null) {
563 throw new NullPointerException("alias == null");
564 }
Kenny Root0150e482013-02-13 15:22:50 -0800565
Robin Lee28d68b12016-07-22 16:32:32 +0100566 final byte[] certificateBytes;
567 final byte[] certChainBytes;
568 try (KeyChainConnection keyChainConnection = bind(context.getApplicationContext())) {
569 IKeyChainService keyChainService = keyChainConnection.getService();
570 certificateBytes = keyChainService.getCertificate(alias);
Kenny Root0150e482013-02-13 15:22:50 -0800571 if (certificateBytes == null) {
572 return null;
573 }
Robin Lee28d68b12016-07-22 16:32:32 +0100574 certChainBytes = keyChainService.getCaCertificates(alias);
575 } catch (RemoteException e) {
576 throw new KeyChainException(e);
577 } catch (RuntimeException e) {
578 // only certain RuntimeExceptions can be propagated across the IKeyChainService call
579 throw new KeyChainException(e);
580 }
581
582 try {
Rubin Xub4365912016-03-23 12:13:22 +0000583 X509Certificate leafCert = toCertificate(certificateBytes);
Rubin Xub4365912016-03-23 12:13:22 +0000584 // If the keypair is installed with a certificate chain by either
585 // DevicePolicyManager.installKeyPair or CertInstaller, return that chain.
586 if (certChainBytes != null && certChainBytes.length != 0) {
587 Collection<X509Certificate> chain = toCertificates(certChainBytes);
588 ArrayList<X509Certificate> fullChain = new ArrayList<>(chain.size() + 1);
589 fullChain.add(leafCert);
590 fullChain.addAll(chain);
591 return fullChain.toArray(new X509Certificate[fullChain.size()]);
592 } else {
593 // If there isn't a certificate chain, either due to a pre-existing keypair
594 // installed before N, or no chain is explicitly installed under the new logic,
595 // fall back to old behavior of constructing the chain from trusted credentials.
596 //
597 // This logic exists to maintain old behaviour for already installed keypair, at
598 // the cost of potentially returning extra certificate chain for new clients who
599 // explicitly installed only the client certificate without a chain. The latter
600 // case is actually no different from pre-N behaviour of getCertificateChain(),
601 // in that sense this change introduces no regression. Besides the returned chain
602 // is still valid so the consumer of the chain should have no problem verifying it.
603 TrustedCertificateStore store = new TrustedCertificateStore();
604 List<X509Certificate> chain = store.getCertificateChain(leafCert);
605 return chain.toArray(new X509Certificate[chain.size()]);
606 }
Robin Lee28d68b12016-07-22 16:32:32 +0100607 } catch (CertificateException | RuntimeException e) {
Kenny Rootcfba6a02013-05-06 15:00:58 -0700608 throw new KeyChainException(e);
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700609 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700610 }
611
Kenny Rootbf556ac2013-04-01 15:10:22 -0700612 /**
613 * Returns {@code true} if the current device's {@code KeyChain} supports a
614 * specific {@code PrivateKey} type indicated by {@code algorithm} (e.g.,
615 * "RSA").
616 */
Alex Klyubin4d5443f2015-05-06 15:43:52 -0700617 public static boolean isKeyAlgorithmSupported(
Alex Klyubin3f8d4d82015-05-13 09:15:00 -0700618 @NonNull @KeyProperties.KeyAlgorithmEnum String algorithm) {
Kenny Rootb91773b2013-09-05 13:03:16 -0700619 final String algUpper = algorithm.toUpperCase(Locale.US);
Alex Klyubin3f8d4d82015-05-13 09:15:00 -0700620 return KeyProperties.KEY_ALGORITHM_EC.equals(algUpper)
621 || KeyProperties.KEY_ALGORITHM_RSA.equals(algUpper);
Kenny Rootbf556ac2013-04-01 15:10:22 -0700622 }
623
624 /**
625 * Returns {@code true} if the current device's {@code KeyChain} binds any
626 * {@code PrivateKey} of the given {@code algorithm} to the device once
627 * imported or generated. This can be used to tell if there is special
628 * hardware support that can be used to bind keys to the device in a way
629 * that makes it non-exportable.
Alex Klyubin469cbf52015-06-04 12:36:27 -0700630 *
631 * @deprecated Whether the key is bound to the secure hardware is known only
632 * once the key has been imported. To find out, use:
633 * <pre>{@code
634 * PrivateKey key = ...; // private key from KeyChain
635 *
636 * KeyFactory keyFactory =
637 * KeyFactory.getInstance(key.getAlgorithm(), "AndroidKeyStore");
638 * KeyInfo keyInfo = keyFactory.getKeySpec(key, KeyInfo.class);
Neil Fuller71fbb812015-11-30 09:51:33 +0000639 * if (keyInfo.isInsideSecureHardware()) {
Alex Klyubin469cbf52015-06-04 12:36:27 -0700640 * // The key is bound to the secure hardware of this Android
Neil Fuller71fbb812015-11-30 09:51:33 +0000641 * }}</pre>
Kenny Rootbf556ac2013-04-01 15:10:22 -0700642 */
Alex Klyubin469cbf52015-06-04 12:36:27 -0700643 @Deprecated
Alex Klyubin4d5443f2015-05-06 15:43:52 -0700644 public static boolean isBoundKeyAlgorithm(
Alex Klyubin3f8d4d82015-05-13 09:15:00 -0700645 @NonNull @KeyProperties.KeyAlgorithmEnum String algorithm) {
Kenny Root5b7e90a2013-04-02 11:23:41 -0700646 if (!isKeyAlgorithmSupported(algorithm)) {
Kenny Rootbf556ac2013-04-01 15:10:22 -0700647 return false;
648 }
649
Kenny Rootb91773b2013-09-05 13:03:16 -0700650 return KeyStore.getInstance().isHardwareBacked(algorithm);
Kenny Rootbf556ac2013-04-01 15:10:22 -0700651 }
652
Zoltan Szatmary-Banf0ae1352014-08-18 10:48:33 +0100653 /** @hide */
Alex Klyubin54bb1592015-05-11 12:30:03 -0700654 @NonNull
655 public static X509Certificate toCertificate(@NonNull byte[] bytes) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700656 if (bytes == null) {
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700657 throw new IllegalArgumentException("bytes == null");
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700658 }
659 try {
660 CertificateFactory certFactory = CertificateFactory.getInstance("X.509");
661 Certificate cert = certFactory.generateCertificate(new ByteArrayInputStream(bytes));
662 return (X509Certificate) cert;
663 } catch (CertificateException e) {
664 throw new AssertionError(e);
665 }
666 }
667
Rubin Xub4365912016-03-23 12:13:22 +0000668 /** @hide */
669 @NonNull
670 public static Collection<X509Certificate> toCertificates(@NonNull byte[] bytes) {
671 if (bytes == null) {
672 throw new IllegalArgumentException("bytes == null");
673 }
674 try {
675 CertificateFactory certFactory = CertificateFactory.getInstance("X.509");
676 return (Collection<X509Certificate>) certFactory.generateCertificates(
677 new ByteArrayInputStream(bytes));
678 } catch (CertificateException e) {
679 throw new AssertionError(e);
680 }
681 }
682
Brian Carlstromd7524722011-05-17 16:20:36 -0700683 /**
684 * @hide for reuse by CertInstaller and Settings.
685 * @see KeyChain#bind
686 */
Robin Lee7f5c91c2017-02-08 21:27:02 +0000687 public static class KeyChainConnection implements Closeable {
Brian Carlstromd7524722011-05-17 16:20:36 -0700688 private final Context context;
689 private final ServiceConnection serviceConnection;
690 private final IKeyChainService service;
phweisse375fc42017-04-19 20:15:06 +0200691 protected KeyChainConnection(Context context,
692 ServiceConnection serviceConnection,
693 IKeyChainService service) {
Brian Carlstromd7524722011-05-17 16:20:36 -0700694 this.context = context;
695 this.serviceConnection = serviceConnection;
696 this.service = service;
697 }
698 @Override public void close() {
699 context.unbindService(serviceConnection);
700 }
701 public IKeyChainService getService() {
702 return service;
703 }
704 }
705
706 /**
707 * @hide for reuse by CertInstaller and Settings.
708 *
709 * Caller should call unbindService on the result when finished.
710 */
Robin Lee59e3baa2015-06-30 10:48:06 -0700711 @WorkerThread
Alex Klyubin54bb1592015-05-11 12:30:03 -0700712 public static KeyChainConnection bind(@NonNull Context context) throws InterruptedException {
Robin Lee306fe082014-06-19 14:04:24 +0000713 return bindAsUser(context, Process.myUserHandle());
714 }
715
716 /**
717 * @hide
718 */
Robin Lee59e3baa2015-06-30 10:48:06 -0700719 @WorkerThread
Alex Klyubin54bb1592015-05-11 12:30:03 -0700720 public static KeyChainConnection bindAsUser(@NonNull Context context, UserHandle user)
Robin Lee306fe082014-06-19 14:04:24 +0000721 throws InterruptedException {
Brian Carlstromd7524722011-05-17 16:20:36 -0700722 if (context == null) {
723 throw new NullPointerException("context == null");
724 }
725 ensureNotOnMainThread(context);
726 final BlockingQueue<IKeyChainService> q = new LinkedBlockingQueue<IKeyChainService>(1);
727 ServiceConnection keyChainServiceConnection = new ServiceConnection() {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700728 volatile boolean mConnectedAtLeastOnce = false;
Brian Carlstromd7524722011-05-17 16:20:36 -0700729 @Override public void onServiceConnected(ComponentName name, IBinder service) {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700730 if (!mConnectedAtLeastOnce) {
731 mConnectedAtLeastOnce = true;
732 try {
Jeff Sharkey0a17db12016-11-04 11:23:46 -0600733 q.put(IKeyChainService.Stub.asInterface(Binder.allowBlocking(service)));
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700734 } catch (InterruptedException e) {
735 // will never happen, since the queue starts with one available slot
736 }
Brian Carlstromd7524722011-05-17 16:20:36 -0700737 }
738 }
739 @Override public void onServiceDisconnected(ComponentName name) {}
740 };
Maggie Benthallda51e682013-08-08 22:35:44 -0400741 Intent intent = new Intent(IKeyChainService.class.getName());
742 ComponentName comp = intent.resolveSystemService(context.getPackageManager(), 0);
743 intent.setComponent(comp);
Robin Lee21bcbc52016-02-29 18:55:35 +0000744 if (comp == null || !context.bindServiceAsUser(
745 intent, keyChainServiceConnection, Context.BIND_AUTO_CREATE, user)) {
Brian Carlstromd7524722011-05-17 16:20:36 -0700746 throw new AssertionError("could not bind to KeyChainService");
747 }
748 return new KeyChainConnection(context, keyChainServiceConnection, q.take());
749 }
750
Alex Klyubin54bb1592015-05-11 12:30:03 -0700751 private static void ensureNotOnMainThread(@NonNull Context context) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700752 Looper looper = Looper.myLooper();
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700753 if (looper != null && looper == context.getMainLooper()) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700754 throw new IllegalStateException(
755 "calling this from your main thread can lead to deadlock");
756 }
757 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700758}