blob: 030fa60abfd3f799b7a8ec105bc2eb134c941273 [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 *
Eran Messeri0bc50f92018-06-01 16:03:39 +0100355 * <p>A device policy controller (as a device or profile owner) can
356 * intercept the request before the activity is shown, to pick a
357 * specific private key alias by implementing
358 * {@link android.app.admin.DeviceAdminReceiver#onChoosePrivateKeyAlias
359 * onChoosePrivateKeyAlias}.
Robin Lee3798ed52015-02-03 17:55:31 +0000360 *
361 * <p>{@code keyTypes} and {@code issuers} may be used to
362 * highlight suggested choices to the user, although to cope with
363 * sometimes erroneous values provided by servers, the user may be
364 * able to override these suggestions.
365 *
366 * <p>{@code host} and {@code port} may be used to give the user
367 * more context about the server requesting the credentials.
368 *
Eran Messeri0bc50f92018-06-01 16:03:39 +0100369 * <p>{@code alias} allows the caller to preselect an existing
Robin Lee3798ed52015-02-03 17:55:31 +0000370 * alias which will still be subject to user confirmation.
371 *
372 * @param activity The {@link Activity} context to use for
373 * launching the new sub-Activity to prompt the user to select
374 * a private key; used only to call startActivity(); must not
375 * be null.
376 * @param response Callback to invoke when the request completes;
Mike Harriscd0eb712018-04-26 15:20:10 -0700377 * must not be null.
Robin Lee3798ed52015-02-03 17:55:31 +0000378 * @param keyTypes The acceptable types of asymmetric keys such as
Mike Harriscd0eb712018-04-26 15:20:10 -0700379 * "RSA" or "DSA", or null.
Robin Lee3798ed52015-02-03 17:55:31 +0000380 * @param issuers The acceptable certificate issuers for the
381 * certificate matching the private key, or null.
382 * @param host The host name of the server requesting the
383 * certificate, or null if unavailable.
384 * @param port The port number of the server requesting the
385 * certificate, or -1 if unavailable.
386 * @param alias The alias to preselect if available, or null if
387 * unavailable.
388 */
Alex Klyubin54bb1592015-05-11 12:30:03 -0700389 public static void choosePrivateKeyAlias(@NonNull Activity activity,
390 @NonNull KeyChainAliasCallback response,
Mike Harriscd0eb712018-04-26 15:20:10 -0700391 @Nullable @KeyProperties.KeyAlgorithmEnum String[] keyTypes,
392 @Nullable Principal[] issuers,
Alex Klyubin54bb1592015-05-11 12:30:03 -0700393 @Nullable String host, int port, @Nullable String alias) {
Robin Lee39087b12015-05-05 15:57:17 +0100394 Uri uri = null;
395 if (host != null) {
396 uri = new Uri.Builder()
397 .authority(host + (port != -1 ? ":" + port : ""))
398 .build();
399 }
400 choosePrivateKeyAlias(activity, response, keyTypes, issuers, uri, alias);
Robin Lee3798ed52015-02-03 17:55:31 +0000401 }
402
403 /**
404 * Launches an {@code Activity} for the user to select the alias
405 * for a private key and certificate pair for authentication. The
406 * selected alias or null will be returned via the
407 * KeyChainAliasCallback callback.
408 *
Eran Messeri0bc50f92018-06-01 16:03:39 +0100409 * <p>A device policy controller (as a device or profile owner) can
410 * intercept the request before the activity is shown, to pick a
411 * specific private key alias by implementing
412 * {@link android.app.admin.DeviceAdminReceiver#onChoosePrivateKeyAlias
413 * onChoosePrivateKeyAlias}.
Robin Lee3798ed52015-02-03 17:55:31 +0000414 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700415 * <p>{@code keyTypes} and {@code issuers} may be used to
416 * highlight suggested choices to the user, although to cope with
417 * sometimes erroneous values provided by servers, the user may be
418 * able to override these suggestions.
419 *
Eran Messeri0bc50f92018-06-01 16:03:39 +0100420 * <p>{@code uri} may be used to give the user more context about
421 * the server requesting the credentials.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700422 *
Eran Messeri0bc50f92018-06-01 16:03:39 +0100423 * <p>{@code alias} allows the caller to preselect an existing
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700424 * alias which will still be subject to user confirmation.
425 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700426 * @param activity The {@link Activity} context to use for
427 * launching the new sub-Activity to prompt the user to select
428 * a private key; used only to call startActivity(); must not
429 * be null.
430 * @param response Callback to invoke when the request completes;
Mike Harriscd0eb712018-04-26 15:20:10 -0700431 * must not be null.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700432 * @param keyTypes The acceptable types of asymmetric keys such as
Mike Harriscd0eb712018-04-26 15:20:10 -0700433 * "EC" or "RSA", or null.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700434 * @param issuers The acceptable certificate issuers for the
435 * certificate matching the private key, or null.
Robin Lee39087b12015-05-05 15:57:17 +0100436 * @param uri The full URI the server is requesting the certificate
Robin Lee3798ed52015-02-03 17:55:31 +0000437 * for, or null if unavailable.
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700438 * @param alias The alias to preselect if available, or null if
439 * unavailable.
Brian Carlstromba1a6672011-05-24 21:54:37 -0700440 */
Alex Klyubin54bb1592015-05-11 12:30:03 -0700441 public static void choosePrivateKeyAlias(@NonNull Activity activity,
442 @NonNull KeyChainAliasCallback response,
Mike Harriscd0eb712018-04-26 15:20:10 -0700443 @Nullable @KeyProperties.KeyAlgorithmEnum String[] keyTypes,
444 @Nullable Principal[] issuers,
Robin Lee39087b12015-05-05 15:57:17 +0100445 @Nullable Uri uri, @Nullable String alias) {
Brian Carlstrom93201f52011-06-09 15:05:35 -0700446 /*
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700447 * TODO currently keyTypes, issuers are unused. They are meant
448 * to follow the semantics and purpose of X509KeyManager
449 * method arguments.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700450 *
451 * keyTypes would allow the list to be filtered and typically
452 * will be set correctly by the server. In practice today,
Alex Klyubincd2329d2015-01-14 16:45:51 -0800453 * most all users will want only RSA or EC, and usually
Brian Carlstrom93201f52011-06-09 15:05:35 -0700454 * only a small number of certs will be available.
455 *
456 * issuers is typically not useful. Some servers historically
457 * will send the entire list of public CAs known to the
458 * server. Others will send none. If this is used, if there
459 * are no matches after applying the constraint, it should be
460 * ignored.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700461 */
Brian Carlstromba1a6672011-05-24 21:54:37 -0700462 if (activity == null) {
463 throw new NullPointerException("activity == null");
464 }
465 if (response == null) {
466 throw new NullPointerException("response == null");
467 }
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700468 Intent intent = new Intent(ACTION_CHOOSER);
Kenny Roota3659062014-03-17 16:21:53 -0700469 intent.setPackage(KEYCHAIN_PACKAGE);
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700470 intent.putExtra(EXTRA_RESPONSE, new AliasResponse(response));
Robin Lee39087b12015-05-05 15:57:17 +0100471 intent.putExtra(EXTRA_URI, uri);
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700472 intent.putExtra(EXTRA_ALIAS, alias);
473 // the PendingIntent is used to get calling package name
474 intent.putExtra(EXTRA_SENDER, PendingIntent.getActivity(activity, 0, new Intent(), 0));
Brian Carlstromba1a6672011-05-24 21:54:37 -0700475 activity.startActivity(intent);
476 }
477
Brian Carlstrom93201f52011-06-09 15:05:35 -0700478 private static class AliasResponse extends IKeyChainAliasCallback.Stub {
Brian Carlstrom93201f52011-06-09 15:05:35 -0700479 private final KeyChainAliasCallback keyChainAliasResponse;
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700480 private AliasResponse(KeyChainAliasCallback keyChainAliasResponse) {
Brian Carlstromba1a6672011-05-24 21:54:37 -0700481 this.keyChainAliasResponse = keyChainAliasResponse;
482 }
483 @Override public void alias(String alias) {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700484 keyChainAliasResponse.alias(alias);
Brian Carlstromba1a6672011-05-24 21:54:37 -0700485 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700486 }
487
488 /**
Brian Carlstromba1a6672011-05-24 21:54:37 -0700489 * Returns the {@code PrivateKey} for the requested alias, or null
Robin Lee3a435f02015-12-21 12:06:04 +0000490 * if there is no result.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700491 *
Robin Lee59e3baa2015-06-30 10:48:06 -0700492 * <p> This method may block while waiting for a connection to another process, and must never
493 * be called from the main thread.
Robin Leeda236182016-08-12 12:46:28 +0100494 * <p> As {@link Activity} and {@link Service} contexts are short-lived and can be destroyed
495 * at any time from the main thread, it is safer to rely on a long-lived context such as one
496 * returned from {@link Context#getApplicationContext()}.
Robin Lee59e3baa2015-06-30 10:48:06 -0700497 *
498 * @param alias The alias of the desired private key, typically returned via
499 * {@link KeyChainAliasCallback#alias}.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700500 * @throws KeyChainException if the alias was valid but there was some problem accessing it.
Robin Lee59e3baa2015-06-30 10:48:06 -0700501 * @throws IllegalStateException if called from the main thread.
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700502 */
Robin Lee59e3baa2015-06-30 10:48:06 -0700503 @Nullable @WorkerThread
Alex Klyubin54bb1592015-05-11 12:30:03 -0700504 public static PrivateKey getPrivateKey(@NonNull Context context, @NonNull String alias)
Brian Carlstrom93201f52011-06-09 15:05:35 -0700505 throws KeyChainException, InterruptedException {
Eran Messeri23c438d2017-11-23 17:20:52 +0000506 KeyPair keyPair = getKeyPair(context, alias);
507 if (keyPair != null) {
508 return keyPair.getPrivate();
509 }
510
511 return null;
512 }
513
514 /** @hide */
515 @Nullable @WorkerThread
516 public static KeyPair getKeyPair(@NonNull Context context, @NonNull String alias)
517 throws KeyChainException, InterruptedException {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700518 if (alias == null) {
519 throw new NullPointerException("alias == null");
520 }
Shawn Willdendea66142016-11-16 06:01:06 -0700521 if (context == null) {
522 throw new NullPointerException("context == null");
523 }
Robin Lee28d68b12016-07-22 16:32:32 +0100524
525 final String keyId;
526 try (KeyChainConnection keyChainConnection = bind(context.getApplicationContext())) {
527 keyId = keyChainConnection.getService().requestPrivateKey(alias);
Brian Carlstrom93201f52011-06-09 15:05:35 -0700528 } catch (RemoteException e) {
529 throw new KeyChainException(e);
530 } catch (RuntimeException e) {
531 // only certain RuntimeExceptions can be propagated across the IKeyChainService call
532 throw new KeyChainException(e);
Robin Lee28d68b12016-07-22 16:32:32 +0100533 }
534
535 if (keyId == null) {
536 return null;
537 } else {
538 try {
Eran Messeri23c438d2017-11-23 17:20:52 +0000539 return AndroidKeyStoreProvider.loadAndroidKeyStoreKeyPairFromKeystore(
Robin Lee28d68b12016-07-22 16:32:32 +0100540 KeyStore.getInstance(), keyId, KeyStore.UID_SELF);
541 } catch (RuntimeException | UnrecoverableKeyException e) {
542 throw new KeyChainException(e);
543 }
Brian Carlstromba1a6672011-05-24 21:54:37 -0700544 }
545 }
546
547 /**
548 * Returns the {@code X509Certificate} chain for the requested
Rubin Xub4365912016-03-23 12:13:22 +0000549 * alias, or null if there is no result.
550 * <p>
551 * <strong>Note:</strong> If a certificate chain was explicitly specified when the alias was
552 * installed, this method will return that chain. If only the client certificate was specified
553 * at the installation time, this method will try to build a certificate chain using all
554 * available trust anchors (preinstalled and user-added).
Brian Carlstrom93201f52011-06-09 15:05:35 -0700555 *
Robin Lee59e3baa2015-06-30 10:48:06 -0700556 * <p> This method may block while waiting for a connection to another process, and must never
557 * be called from the main thread.
Robin Leeda236182016-08-12 12:46:28 +0100558 * <p> As {@link Activity} and {@link Service} contexts are short-lived and can be destroyed
559 * at any time from the main thread, it is safer to rely on a long-lived context such as one
560 * returned from {@link Context#getApplicationContext()}.
Robin Lee59e3baa2015-06-30 10:48:06 -0700561 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700562 * @param alias The alias of the desired certificate chain, typically
563 * returned via {@link KeyChainAliasCallback#alias}.
564 * @throws KeyChainException if the alias was valid but there was some problem accessing it.
Robin Lee59e3baa2015-06-30 10:48:06 -0700565 * @throws IllegalStateException if called from the main thread.
Brian Carlstromba1a6672011-05-24 21:54:37 -0700566 */
Robin Lee59e3baa2015-06-30 10:48:06 -0700567 @Nullable @WorkerThread
Alex Klyubin54bb1592015-05-11 12:30:03 -0700568 public static X509Certificate[] getCertificateChain(@NonNull Context context,
569 @NonNull String alias) throws KeyChainException, InterruptedException {
Brian Carlstromba1a6672011-05-24 21:54:37 -0700570 if (alias == null) {
571 throw new NullPointerException("alias == null");
572 }
Kenny Root0150e482013-02-13 15:22:50 -0800573
Robin Lee28d68b12016-07-22 16:32:32 +0100574 final byte[] certificateBytes;
575 final byte[] certChainBytes;
576 try (KeyChainConnection keyChainConnection = bind(context.getApplicationContext())) {
577 IKeyChainService keyChainService = keyChainConnection.getService();
578 certificateBytes = keyChainService.getCertificate(alias);
Kenny Root0150e482013-02-13 15:22:50 -0800579 if (certificateBytes == null) {
580 return null;
581 }
Robin Lee28d68b12016-07-22 16:32:32 +0100582 certChainBytes = keyChainService.getCaCertificates(alias);
583 } catch (RemoteException e) {
584 throw new KeyChainException(e);
585 } catch (RuntimeException e) {
586 // only certain RuntimeExceptions can be propagated across the IKeyChainService call
587 throw new KeyChainException(e);
588 }
589
590 try {
Rubin Xub4365912016-03-23 12:13:22 +0000591 X509Certificate leafCert = toCertificate(certificateBytes);
Rubin Xub4365912016-03-23 12:13:22 +0000592 // If the keypair is installed with a certificate chain by either
593 // DevicePolicyManager.installKeyPair or CertInstaller, return that chain.
594 if (certChainBytes != null && certChainBytes.length != 0) {
595 Collection<X509Certificate> chain = toCertificates(certChainBytes);
596 ArrayList<X509Certificate> fullChain = new ArrayList<>(chain.size() + 1);
597 fullChain.add(leafCert);
598 fullChain.addAll(chain);
599 return fullChain.toArray(new X509Certificate[fullChain.size()]);
600 } else {
601 // If there isn't a certificate chain, either due to a pre-existing keypair
602 // installed before N, or no chain is explicitly installed under the new logic,
603 // fall back to old behavior of constructing the chain from trusted credentials.
604 //
605 // This logic exists to maintain old behaviour for already installed keypair, at
606 // the cost of potentially returning extra certificate chain for new clients who
607 // explicitly installed only the client certificate without a chain. The latter
608 // case is actually no different from pre-N behaviour of getCertificateChain(),
609 // in that sense this change introduces no regression. Besides the returned chain
610 // is still valid so the consumer of the chain should have no problem verifying it.
611 TrustedCertificateStore store = new TrustedCertificateStore();
612 List<X509Certificate> chain = store.getCertificateChain(leafCert);
613 return chain.toArray(new X509Certificate[chain.size()]);
614 }
Robin Lee28d68b12016-07-22 16:32:32 +0100615 } catch (CertificateException | RuntimeException e) {
Kenny Rootcfba6a02013-05-06 15:00:58 -0700616 throw new KeyChainException(e);
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700617 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700618 }
619
Kenny Rootbf556ac2013-04-01 15:10:22 -0700620 /**
621 * Returns {@code true} if the current device's {@code KeyChain} supports a
622 * specific {@code PrivateKey} type indicated by {@code algorithm} (e.g.,
623 * "RSA").
624 */
Alex Klyubin4d5443f2015-05-06 15:43:52 -0700625 public static boolean isKeyAlgorithmSupported(
Alex Klyubin3f8d4d82015-05-13 09:15:00 -0700626 @NonNull @KeyProperties.KeyAlgorithmEnum String algorithm) {
Kenny Rootb91773b2013-09-05 13:03:16 -0700627 final String algUpper = algorithm.toUpperCase(Locale.US);
Alex Klyubin3f8d4d82015-05-13 09:15:00 -0700628 return KeyProperties.KEY_ALGORITHM_EC.equals(algUpper)
629 || KeyProperties.KEY_ALGORITHM_RSA.equals(algUpper);
Kenny Rootbf556ac2013-04-01 15:10:22 -0700630 }
631
632 /**
633 * Returns {@code true} if the current device's {@code KeyChain} binds any
634 * {@code PrivateKey} of the given {@code algorithm} to the device once
635 * imported or generated. This can be used to tell if there is special
636 * hardware support that can be used to bind keys to the device in a way
637 * that makes it non-exportable.
Alex Klyubin469cbf52015-06-04 12:36:27 -0700638 *
639 * @deprecated Whether the key is bound to the secure hardware is known only
640 * once the key has been imported. To find out, use:
641 * <pre>{@code
642 * PrivateKey key = ...; // private key from KeyChain
643 *
644 * KeyFactory keyFactory =
645 * KeyFactory.getInstance(key.getAlgorithm(), "AndroidKeyStore");
646 * KeyInfo keyInfo = keyFactory.getKeySpec(key, KeyInfo.class);
Neil Fuller71fbb812015-11-30 09:51:33 +0000647 * if (keyInfo.isInsideSecureHardware()) {
Alex Klyubin469cbf52015-06-04 12:36:27 -0700648 * // The key is bound to the secure hardware of this Android
Neil Fuller71fbb812015-11-30 09:51:33 +0000649 * }}</pre>
Kenny Rootbf556ac2013-04-01 15:10:22 -0700650 */
Alex Klyubin469cbf52015-06-04 12:36:27 -0700651 @Deprecated
Alex Klyubin4d5443f2015-05-06 15:43:52 -0700652 public static boolean isBoundKeyAlgorithm(
Alex Klyubin3f8d4d82015-05-13 09:15:00 -0700653 @NonNull @KeyProperties.KeyAlgorithmEnum String algorithm) {
Kenny Root5b7e90a2013-04-02 11:23:41 -0700654 if (!isKeyAlgorithmSupported(algorithm)) {
Kenny Rootbf556ac2013-04-01 15:10:22 -0700655 return false;
656 }
657
Kenny Rootb91773b2013-09-05 13:03:16 -0700658 return KeyStore.getInstance().isHardwareBacked(algorithm);
Kenny Rootbf556ac2013-04-01 15:10:22 -0700659 }
660
Zoltan Szatmary-Banf0ae1352014-08-18 10:48:33 +0100661 /** @hide */
Alex Klyubin54bb1592015-05-11 12:30:03 -0700662 @NonNull
663 public static X509Certificate toCertificate(@NonNull byte[] bytes) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700664 if (bytes == null) {
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700665 throw new IllegalArgumentException("bytes == null");
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700666 }
667 try {
668 CertificateFactory certFactory = CertificateFactory.getInstance("X.509");
669 Certificate cert = certFactory.generateCertificate(new ByteArrayInputStream(bytes));
670 return (X509Certificate) cert;
671 } catch (CertificateException e) {
672 throw new AssertionError(e);
673 }
674 }
675
Rubin Xub4365912016-03-23 12:13:22 +0000676 /** @hide */
677 @NonNull
678 public static Collection<X509Certificate> toCertificates(@NonNull byte[] bytes) {
679 if (bytes == null) {
680 throw new IllegalArgumentException("bytes == null");
681 }
682 try {
683 CertificateFactory certFactory = CertificateFactory.getInstance("X.509");
684 return (Collection<X509Certificate>) certFactory.generateCertificates(
685 new ByteArrayInputStream(bytes));
686 } catch (CertificateException e) {
687 throw new AssertionError(e);
688 }
689 }
690
Brian Carlstromd7524722011-05-17 16:20:36 -0700691 /**
692 * @hide for reuse by CertInstaller and Settings.
693 * @see KeyChain#bind
694 */
Robin Lee7f5c91c2017-02-08 21:27:02 +0000695 public static class KeyChainConnection implements Closeable {
Brian Carlstromd7524722011-05-17 16:20:36 -0700696 private final Context context;
697 private final ServiceConnection serviceConnection;
698 private final IKeyChainService service;
phweisse375fc42017-04-19 20:15:06 +0200699 protected KeyChainConnection(Context context,
700 ServiceConnection serviceConnection,
701 IKeyChainService service) {
Brian Carlstromd7524722011-05-17 16:20:36 -0700702 this.context = context;
703 this.serviceConnection = serviceConnection;
704 this.service = service;
705 }
706 @Override public void close() {
707 context.unbindService(serviceConnection);
708 }
709 public IKeyChainService getService() {
710 return service;
711 }
712 }
713
714 /**
715 * @hide for reuse by CertInstaller and Settings.
716 *
717 * Caller should call unbindService on the result when finished.
718 */
Robin Lee59e3baa2015-06-30 10:48:06 -0700719 @WorkerThread
Alex Klyubin54bb1592015-05-11 12:30:03 -0700720 public static KeyChainConnection bind(@NonNull Context context) throws InterruptedException {
Robin Lee306fe082014-06-19 14:04:24 +0000721 return bindAsUser(context, Process.myUserHandle());
722 }
723
724 /**
725 * @hide
726 */
Robin Lee59e3baa2015-06-30 10:48:06 -0700727 @WorkerThread
Alex Klyubin54bb1592015-05-11 12:30:03 -0700728 public static KeyChainConnection bindAsUser(@NonNull Context context, UserHandle user)
Robin Lee306fe082014-06-19 14:04:24 +0000729 throws InterruptedException {
Brian Carlstromd7524722011-05-17 16:20:36 -0700730 if (context == null) {
731 throw new NullPointerException("context == null");
732 }
733 ensureNotOnMainThread(context);
734 final BlockingQueue<IKeyChainService> q = new LinkedBlockingQueue<IKeyChainService>(1);
735 ServiceConnection keyChainServiceConnection = new ServiceConnection() {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700736 volatile boolean mConnectedAtLeastOnce = false;
Brian Carlstromd7524722011-05-17 16:20:36 -0700737 @Override public void onServiceConnected(ComponentName name, IBinder service) {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700738 if (!mConnectedAtLeastOnce) {
739 mConnectedAtLeastOnce = true;
740 try {
Jeff Sharkey0a17db12016-11-04 11:23:46 -0600741 q.put(IKeyChainService.Stub.asInterface(Binder.allowBlocking(service)));
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700742 } catch (InterruptedException e) {
743 // will never happen, since the queue starts with one available slot
744 }
Brian Carlstromd7524722011-05-17 16:20:36 -0700745 }
746 }
747 @Override public void onServiceDisconnected(ComponentName name) {}
748 };
Maggie Benthallda51e682013-08-08 22:35:44 -0400749 Intent intent = new Intent(IKeyChainService.class.getName());
750 ComponentName comp = intent.resolveSystemService(context.getPackageManager(), 0);
751 intent.setComponent(comp);
Robin Lee21bcbc52016-02-29 18:55:35 +0000752 if (comp == null || !context.bindServiceAsUser(
753 intent, keyChainServiceConnection, Context.BIND_AUTO_CREATE, user)) {
Brian Carlstromd7524722011-05-17 16:20:36 -0700754 throw new AssertionError("could not bind to KeyChainService");
755 }
756 return new KeyChainConnection(context, keyChainServiceConnection, q.take());
757 }
758
Alex Klyubin54bb1592015-05-11 12:30:03 -0700759 private static void ensureNotOnMainThread(@NonNull Context context) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700760 Looper looper = Looper.myLooper();
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700761 if (looper != null && looper == context.getMainLooper()) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700762 throw new IllegalStateException(
763 "calling this from your main thread can lead to deadlock");
764 }
765 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700766}