blob: dfa41e8af2aa10723154efad7a0f44fbc60b9840 [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
Brian Carlstromba1a6672011-05-24 21:54:37 -070018import android.app.Activity;
Brian Carlstrom67c30df2011-06-24 02:13:23 -070019import android.app.PendingIntent;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070020import android.content.ComponentName;
21import android.content.Context;
22import android.content.Intent;
23import android.content.ServiceConnection;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070024import android.os.IBinder;
25import android.os.Looper;
Robin Lee306fe082014-06-19 14:04:24 +000026import android.os.Process;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070027import android.os.RemoteException;
Robin Lee306fe082014-06-19 14:04:24 +000028import android.os.UserHandle;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070029import java.io.ByteArrayInputStream;
Brian Carlstromd7524722011-05-17 16:20:36 -070030import java.io.Closeable;
Kenny Root5423e682011-11-14 08:43:13 -080031import java.security.InvalidKeyException;
Brian Carlstrom93201f52011-06-09 15:05:35 -070032import java.security.Principal;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070033import java.security.PrivateKey;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070034import java.security.cert.Certificate;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070035import java.security.cert.CertificateException;
36import java.security.cert.CertificateFactory;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070037import java.security.cert.X509Certificate;
Brian Carlstromdb93b782011-07-01 00:12:17 -070038import java.util.List;
Kenny Rootb91773b2013-09-05 13:03:16 -070039import java.util.Locale;
Brian Carlstrom8e9929c2011-05-17 00:40:28 -070040import java.util.concurrent.BlockingQueue;
41import java.util.concurrent.LinkedBlockingQueue;
Kenny Root5423e682011-11-14 08:43:13 -080042
Kenny Root12e75222013-04-23 22:34:24 -070043import com.android.org.conscrypt.OpenSSLEngine;
44import com.android.org.conscrypt.TrustedCertificateStore;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070045
46/**
Brian Carlstrom93201f52011-06-09 15:05:35 -070047 * The {@code KeyChain} class provides access to private keys and
48 * their corresponding certificate chains in credential storage.
49 *
50 * <p>Applications accessing the {@code KeyChain} normally go through
51 * these steps:
52 *
53 * <ol>
54 *
55 * <li>Receive a callback from an {@link javax.net.ssl.X509KeyManager
56 * X509KeyManager} that a private key is requested.
57 *
58 * <li>Call {@link #choosePrivateKeyAlias
59 * choosePrivateKeyAlias} to allow the user to select from a
60 * list of currently available private keys and corresponding
61 * certificate chains. The chosen alias will be returned by the
62 * callback {@link KeyChainAliasCallback#alias}, or null if no private
63 * key is available or the user cancels the request.
64 *
65 * <li>Call {@link #getPrivateKey} and {@link #getCertificateChain} to
66 * retrieve the credentials to return to the corresponding {@link
67 * javax.net.ssl.X509KeyManager} callbacks.
68 *
69 * </ol>
70 *
71 * <p>An application may remember the value of a selected alias to
72 * avoid prompting the user with {@link #choosePrivateKeyAlias
73 * choosePrivateKeyAlias} on subsequent connections. If the alias is
74 * no longer valid, null will be returned on lookups using that value
Brian Carlstromca43c452011-06-29 18:53:17 -070075 *
76 * <p>An application can request the installation of private keys and
77 * certificates via the {@code Intent} provided by {@link
78 * #createInstallIntent}. Private keys installed via this {@code
79 * Intent} will be accessible via {@link #choosePrivateKeyAlias} while
80 * Certificate Authority (CA) certificates will be trusted by all
81 * applications through the default {@code X509TrustManager}.
Brian Carlstromb9a07c12011-04-11 09:03:51 -070082 */
Brian Carlstrom93201f52011-06-09 15:05:35 -070083// TODO reference intent for credential installation when public
Brian Carlstromb9a07c12011-04-11 09:03:51 -070084public final class KeyChain {
85
86 private static final String TAG = "KeyChain";
87
88 /**
89 * @hide Also used by KeyChainService implementation
90 */
91 public static final String ACCOUNT_TYPE = "com.android.keychain";
92
93 /**
Kenny Roota3659062014-03-17 16:21:53 -070094 * Package name for KeyChain chooser.
95 */
96 private static final String KEYCHAIN_PACKAGE = "com.android.keychain";
97
98 /**
Brian Carlstroma00a2b32011-06-29 10:42:35 -070099 * Action to bring up the KeyChainActivity
100 */
101 private static final String ACTION_CHOOSER = "com.android.keychain.CHOOSER";
102
103 /**
Kenny Root1a88d832014-02-07 09:12:48 -0800104 * Package name for the Certificate Installer.
105 */
106 private static final String CERT_INSTALLER_PACKAGE = "com.android.certinstaller";
107
108 /**
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700109 * Extra for use with {@link #ACTION_CHOOSER}
Brian Carlstromba1a6672011-05-24 21:54:37 -0700110 * @hide Also used by KeyChainActivity implementation
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700111 */
Brian Carlstromba1a6672011-05-24 21:54:37 -0700112 public static final String EXTRA_RESPONSE = "response";
113
114 /**
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700115 * Extra for use with {@link #ACTION_CHOOSER}
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700116 * @hide Also used by KeyChainActivity implementation
117 */
118 public static final String EXTRA_HOST = "host";
119
120 /**
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700121 * Extra for use with {@link #ACTION_CHOOSER}
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700122 * @hide Also used by KeyChainActivity implementation
123 */
124 public static final String EXTRA_PORT = "port";
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 */
130 public static final String EXTRA_ALIAS = "alias";
131
132 /**
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700133 * Extra for use with {@link #ACTION_CHOOSER}
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700134 * @hide Also used by KeyChainActivity implementation
135 */
136 public static final String EXTRA_SENDER = "sender";
137
138 /**
Selim Gurun93ba4fe2012-02-14 11:48:49 -0800139 * Action to bring up the CertInstaller.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700140 */
141 private static final String ACTION_INSTALL = "android.credentials.INSTALL";
142
143 /**
144 * Optional extra to specify a {@code String} credential name on
145 * the {@code Intent} returned by {@link #createInstallIntent}.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700146 */
147 // Compatible with old com.android.certinstaller.CredentialHelper.CERT_NAME_KEY
148 public static final String EXTRA_NAME = "name";
149
150 /**
151 * Optional extra to specify an X.509 certificate to install on
152 * the {@code Intent} returned by {@link #createInstallIntent}.
153 * The extra value should be a PEM or ASN.1 DER encoded {@code
154 * byte[]}. An {@link X509Certificate} can be converted to DER
155 * encoded bytes with {@link X509Certificate#getEncoded}.
156 *
157 * <p>{@link #EXTRA_NAME} may be used to provide a default alias
158 * name for the installed certificate.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700159 */
160 // Compatible with old android.security.Credentials.CERTIFICATE
161 public static final String EXTRA_CERTIFICATE = "CERT";
162
163 /**
164 * Optional extra for use with the {@code Intent} returned by
165 * {@link #createInstallIntent} to specify a PKCS#12 key store to
166 * install. The extra value should be a {@code byte[]}. The bytes
167 * may come from an external source or be generated with {@link
Brian Carlstromca43c452011-06-29 18:53:17 -0700168 * java.security.KeyStore#store} on a "PKCS12" instance.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700169 *
170 * <p>The user will be prompted for the password to load the key store.
171 *
172 * <p>The key store will be scanned for {@link
173 * java.security.KeyStore.PrivateKeyEntry} entries and both the
174 * private key and associated certificate chain will be installed.
175 *
176 * <p>{@link #EXTRA_NAME} may be used to provide a default alias
177 * name for the installed credentials.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700178 */
179 // Compatible with old android.security.Credentials.PKCS12
180 public static final String EXTRA_PKCS12 = "PKCS12";
181
Selim Gurun93ba4fe2012-02-14 11:48:49 -0800182
183 /**
Selim Gurun93ba4fe2012-02-14 11:48:49 -0800184 * Broadcast Action: Indicates the trusted storage has changed. Sent when
185 * one of this happens:
186 *
187 * <ul>
188 * <li>a new CA is added,
189 * <li>an existing CA is removed or disabled,
190 * <li>a disabled CA is enabled,
191 * <li>trusted storage is reset (all user certs are cleared),
192 * <li>when permission to access a private key is changed.
193 * </ul>
194 */
195 public static final String ACTION_STORAGE_CHANGED = "android.security.STORAGE_CHANGED";
196
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700197 /**
198 * Returns an {@code Intent} that can be used for credential
199 * installation. The intent may be used without any extras, in
200 * which case the user will be able to install credentials from
201 * their own source.
202 *
203 * <p>Alternatively, {@link #EXTRA_CERTIFICATE} or {@link
204 * #EXTRA_PKCS12} maybe used to specify the bytes of an X.509
205 * certificate or a PKCS#12 key store for installation. These
Brian Carlstromca43c452011-06-29 18:53:17 -0700206 * extras may be combined with {@link #EXTRA_NAME} to provide a
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700207 * default alias name for credentials being installed.
208 *
209 * <p>When used with {@link Activity#startActivityForResult},
210 * {@link Activity#RESULT_OK} will be returned if a credential was
211 * successfully installed, otherwise {@link
212 * Activity#RESULT_CANCELED} will be returned.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700213 */
214 public static Intent createInstallIntent() {
215 Intent intent = new Intent(ACTION_INSTALL);
Kenny Root1a88d832014-02-07 09:12:48 -0800216 intent.setClassName(CERT_INSTALLER_PACKAGE,
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700217 "com.android.certinstaller.CertInstallerMain");
218 return intent;
219 }
220
221 /**
Brian Carlstromba1a6672011-05-24 21:54:37 -0700222 * Launches an {@code Activity} for the user to select the alias
223 * for a private key and certificate pair for authentication. The
224 * selected alias or null will be returned via the
Brian Carlstrom93201f52011-06-09 15:05:35 -0700225 * KeyChainAliasCallback callback.
226 *
227 * <p>{@code keyTypes} and {@code issuers} may be used to
228 * highlight suggested choices to the user, although to cope with
229 * sometimes erroneous values provided by servers, the user may be
230 * able to override these suggestions.
231 *
232 * <p>{@code host} and {@code port} may be used to give the user
233 * more context about the server requesting the credentials.
234 *
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700235 * <p>{@code alias} allows the chooser to preselect an existing
236 * alias which will still be subject to user confirmation.
237 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700238 * @param activity The {@link Activity} context to use for
239 * launching the new sub-Activity to prompt the user to select
240 * a private key; used only to call startActivity(); must not
241 * be null.
242 * @param response Callback to invoke when the request completes;
243 * must not be null
244 * @param keyTypes The acceptable types of asymmetric keys such as
Alex Klyubincd2329d2015-01-14 16:45:51 -0800245 * "EC" or "RSA", or a null array.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700246 * @param issuers The acceptable certificate issuers for the
247 * certificate matching the private key, or null.
248 * @param host The host name of the server requesting the
249 * certificate, or null if unavailable.
250 * @param port The port number of the server requesting the
251 * certificate, or -1 if unavailable.
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700252 * @param alias The alias to preselect if available, or null if
253 * unavailable.
Brian Carlstromba1a6672011-05-24 21:54:37 -0700254 */
Brian Carlstrom93201f52011-06-09 15:05:35 -0700255 public static void choosePrivateKeyAlias(Activity activity, KeyChainAliasCallback response,
256 String[] keyTypes, Principal[] issuers,
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700257 String host, int port,
258 String alias) {
Brian Carlstrom93201f52011-06-09 15:05:35 -0700259 /*
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700260 * TODO currently keyTypes, issuers are unused. They are meant
261 * to follow the semantics and purpose of X509KeyManager
262 * method arguments.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700263 *
264 * keyTypes would allow the list to be filtered and typically
265 * will be set correctly by the server. In practice today,
Alex Klyubincd2329d2015-01-14 16:45:51 -0800266 * most all users will want only RSA or EC, and usually
Brian Carlstrom93201f52011-06-09 15:05:35 -0700267 * only a small number of certs will be available.
268 *
269 * issuers is typically not useful. Some servers historically
270 * will send the entire list of public CAs known to the
271 * server. Others will send none. If this is used, if there
272 * are no matches after applying the constraint, it should be
273 * ignored.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700274 */
Brian Carlstromba1a6672011-05-24 21:54:37 -0700275 if (activity == null) {
276 throw new NullPointerException("activity == null");
277 }
278 if (response == null) {
279 throw new NullPointerException("response == null");
280 }
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700281 Intent intent = new Intent(ACTION_CHOOSER);
Kenny Roota3659062014-03-17 16:21:53 -0700282 intent.setPackage(KEYCHAIN_PACKAGE);
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700283 intent.putExtra(EXTRA_RESPONSE, new AliasResponse(response));
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700284 intent.putExtra(EXTRA_HOST, host);
285 intent.putExtra(EXTRA_PORT, port);
286 intent.putExtra(EXTRA_ALIAS, alias);
287 // the PendingIntent is used to get calling package name
288 intent.putExtra(EXTRA_SENDER, PendingIntent.getActivity(activity, 0, new Intent(), 0));
Brian Carlstromba1a6672011-05-24 21:54:37 -0700289 activity.startActivity(intent);
290 }
291
Brian Carlstrom93201f52011-06-09 15:05:35 -0700292 private static class AliasResponse extends IKeyChainAliasCallback.Stub {
Brian Carlstrom93201f52011-06-09 15:05:35 -0700293 private final KeyChainAliasCallback keyChainAliasResponse;
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700294 private AliasResponse(KeyChainAliasCallback keyChainAliasResponse) {
Brian Carlstromba1a6672011-05-24 21:54:37 -0700295 this.keyChainAliasResponse = keyChainAliasResponse;
296 }
297 @Override public void alias(String alias) {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700298 keyChainAliasResponse.alias(alias);
Brian Carlstromba1a6672011-05-24 21:54:37 -0700299 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700300 }
301
302 /**
Brian Carlstromba1a6672011-05-24 21:54:37 -0700303 * Returns the {@code PrivateKey} for the requested alias, or null
304 * if no there is no result.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700305 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700306 * @param alias The alias of the desired private key, typically
307 * returned via {@link KeyChainAliasCallback#alias}.
308 * @throws KeyChainException if the alias was valid but there was some problem accessing it.
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700309 */
Brian Carlstromba1a6672011-05-24 21:54:37 -0700310 public static PrivateKey getPrivateKey(Context context, String alias)
Brian Carlstrom93201f52011-06-09 15:05:35 -0700311 throws KeyChainException, InterruptedException {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700312 if (alias == null) {
313 throw new NullPointerException("alias == null");
314 }
Brian Carlstromd7524722011-05-17 16:20:36 -0700315 KeyChainConnection keyChainConnection = bind(context);
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700316 try {
Kenny Root5423e682011-11-14 08:43:13 -0800317 final IKeyChainService keyChainService = keyChainConnection.getService();
318 final String keyId = keyChainService.requestPrivateKey(alias);
319 if (keyId == null) {
320 throw new KeyChainException("keystore had a problem");
321 }
322
323 final OpenSSLEngine engine = OpenSSLEngine.getInstance("keystore");
324 return engine.getPrivateKeyById(keyId);
Brian Carlstrom93201f52011-06-09 15:05:35 -0700325 } catch (RemoteException e) {
326 throw new KeyChainException(e);
327 } catch (RuntimeException e) {
328 // only certain RuntimeExceptions can be propagated across the IKeyChainService call
329 throw new KeyChainException(e);
Kenny Root5423e682011-11-14 08:43:13 -0800330 } catch (InvalidKeyException e) {
331 throw new KeyChainException(e);
Brian Carlstromba1a6672011-05-24 21:54:37 -0700332 } finally {
333 keyChainConnection.close();
334 }
335 }
336
337 /**
338 * Returns the {@code X509Certificate} chain for the requested
339 * alias, or null if no there is no result.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700340 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700341 * @param alias The alias of the desired certificate chain, typically
342 * returned via {@link KeyChainAliasCallback#alias}.
343 * @throws KeyChainException if the alias was valid but there was some problem accessing it.
Brian Carlstromba1a6672011-05-24 21:54:37 -0700344 */
345 public static X509Certificate[] getCertificateChain(Context context, String alias)
Brian Carlstrom93201f52011-06-09 15:05:35 -0700346 throws KeyChainException, InterruptedException {
Brian Carlstromba1a6672011-05-24 21:54:37 -0700347 if (alias == null) {
348 throw new NullPointerException("alias == null");
349 }
350 KeyChainConnection keyChainConnection = bind(context);
351 try {
Brian Carlstromba1a6672011-05-24 21:54:37 -0700352 IKeyChainService keyChainService = keyChainConnection.getService();
Kenny Root0150e482013-02-13 15:22:50 -0800353
354 final byte[] certificateBytes = keyChainService.getCertificate(alias);
355 if (certificateBytes == null) {
356 return null;
357 }
358
Brian Carlstromdb93b782011-07-01 00:12:17 -0700359 TrustedCertificateStore store = new TrustedCertificateStore();
Kenny Root54e03af2012-08-07 10:04:26 -0700360 List<X509Certificate> chain = store
361 .getCertificateChain(toCertificate(certificateBytes));
Brian Carlstromdb93b782011-07-01 00:12:17 -0700362 return chain.toArray(new X509Certificate[chain.size()]);
Kenny Rootcfba6a02013-05-06 15:00:58 -0700363 } catch (CertificateException e) {
364 throw new KeyChainException(e);
Brian Carlstrom93201f52011-06-09 15:05:35 -0700365 } catch (RemoteException e) {
366 throw new KeyChainException(e);
367 } catch (RuntimeException e) {
368 // only certain RuntimeExceptions can be propagated across the IKeyChainService call
369 throw new KeyChainException(e);
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700370 } finally {
Brian Carlstromd7524722011-05-17 16:20:36 -0700371 keyChainConnection.close();
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700372 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700373 }
374
Kenny Rootbf556ac2013-04-01 15:10:22 -0700375 /**
376 * Returns {@code true} if the current device's {@code KeyChain} supports a
377 * specific {@code PrivateKey} type indicated by {@code algorithm} (e.g.,
378 * "RSA").
379 */
Kenny Root5b7e90a2013-04-02 11:23:41 -0700380 public static boolean isKeyAlgorithmSupported(String algorithm) {
Kenny Rootb91773b2013-09-05 13:03:16 -0700381 final String algUpper = algorithm.toUpperCase(Locale.US);
Kenny Root9d2d6b62014-11-26 09:08:40 -0800382 return "EC".equals(algUpper) || "RSA".equals(algUpper);
Kenny Rootbf556ac2013-04-01 15:10:22 -0700383 }
384
385 /**
386 * Returns {@code true} if the current device's {@code KeyChain} binds any
387 * {@code PrivateKey} of the given {@code algorithm} to the device once
388 * imported or generated. This can be used to tell if there is special
389 * hardware support that can be used to bind keys to the device in a way
390 * that makes it non-exportable.
391 */
Kenny Root5b7e90a2013-04-02 11:23:41 -0700392 public static boolean isBoundKeyAlgorithm(String algorithm) {
393 if (!isKeyAlgorithmSupported(algorithm)) {
Kenny Rootbf556ac2013-04-01 15:10:22 -0700394 return false;
395 }
396
Kenny Rootb91773b2013-09-05 13:03:16 -0700397 return KeyStore.getInstance().isHardwareBacked(algorithm);
Kenny Rootbf556ac2013-04-01 15:10:22 -0700398 }
399
Zoltan Szatmary-Banf0ae1352014-08-18 10:48:33 +0100400 /** @hide */
401 public static X509Certificate toCertificate(byte[] bytes) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700402 if (bytes == null) {
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700403 throw new IllegalArgumentException("bytes == null");
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700404 }
405 try {
406 CertificateFactory certFactory = CertificateFactory.getInstance("X.509");
407 Certificate cert = certFactory.generateCertificate(new ByteArrayInputStream(bytes));
408 return (X509Certificate) cert;
409 } catch (CertificateException e) {
410 throw new AssertionError(e);
411 }
412 }
413
Brian Carlstromd7524722011-05-17 16:20:36 -0700414 /**
415 * @hide for reuse by CertInstaller and Settings.
416 * @see KeyChain#bind
417 */
418 public final static class KeyChainConnection implements Closeable {
419 private final Context context;
420 private final ServiceConnection serviceConnection;
421 private final IKeyChainService service;
422 private KeyChainConnection(Context context,
423 ServiceConnection serviceConnection,
424 IKeyChainService service) {
425 this.context = context;
426 this.serviceConnection = serviceConnection;
427 this.service = service;
428 }
429 @Override public void close() {
430 context.unbindService(serviceConnection);
431 }
432 public IKeyChainService getService() {
433 return service;
434 }
435 }
436
437 /**
438 * @hide for reuse by CertInstaller and Settings.
439 *
440 * Caller should call unbindService on the result when finished.
441 */
442 public static KeyChainConnection bind(Context context) throws InterruptedException {
Robin Lee306fe082014-06-19 14:04:24 +0000443 return bindAsUser(context, Process.myUserHandle());
444 }
445
446 /**
447 * @hide
448 */
449 public static KeyChainConnection bindAsUser(Context context, UserHandle user)
450 throws InterruptedException {
Brian Carlstromd7524722011-05-17 16:20:36 -0700451 if (context == null) {
452 throw new NullPointerException("context == null");
453 }
454 ensureNotOnMainThread(context);
455 final BlockingQueue<IKeyChainService> q = new LinkedBlockingQueue<IKeyChainService>(1);
456 ServiceConnection keyChainServiceConnection = new ServiceConnection() {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700457 volatile boolean mConnectedAtLeastOnce = false;
Brian Carlstromd7524722011-05-17 16:20:36 -0700458 @Override public void onServiceConnected(ComponentName name, IBinder service) {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700459 if (!mConnectedAtLeastOnce) {
460 mConnectedAtLeastOnce = true;
461 try {
462 q.put(IKeyChainService.Stub.asInterface(service));
463 } catch (InterruptedException e) {
464 // will never happen, since the queue starts with one available slot
465 }
Brian Carlstromd7524722011-05-17 16:20:36 -0700466 }
467 }
468 @Override public void onServiceDisconnected(ComponentName name) {}
469 };
Maggie Benthallda51e682013-08-08 22:35:44 -0400470 Intent intent = new Intent(IKeyChainService.class.getName());
471 ComponentName comp = intent.resolveSystemService(context.getPackageManager(), 0);
472 intent.setComponent(comp);
Robin Lee306fe082014-06-19 14:04:24 +0000473 boolean isBound = context.bindServiceAsUser(intent,
474 keyChainServiceConnection,
475 Context.BIND_AUTO_CREATE,
476 user);
Brian Carlstromd7524722011-05-17 16:20:36 -0700477 if (!isBound) {
478 throw new AssertionError("could not bind to KeyChainService");
479 }
480 return new KeyChainConnection(context, keyChainServiceConnection, q.take());
481 }
482
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700483 private static void ensureNotOnMainThread(Context context) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700484 Looper looper = Looper.myLooper();
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700485 if (looper != null && looper == context.getMainLooper()) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700486 throw new IllegalStateException(
487 "calling this from your main thread can lead to deadlock");
488 }
489 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700490}