blob: fba5bab4586f9029e676e6204fe37fb1e3c67e4c [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;
26import android.os.RemoteException;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070027import java.io.ByteArrayInputStream;
Brian Carlstromd7524722011-05-17 16:20:36 -070028import java.io.Closeable;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070029import java.io.IOException;
Brian Carlstrom9d7faa92011-06-07 13:45:33 -070030import java.security.KeyPair;
Brian Carlstrom93201f52011-06-09 15:05:35 -070031import java.security.Principal;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070032import java.security.PrivateKey;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070033import java.security.cert.Certificate;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070034import java.security.cert.CertificateException;
35import java.security.cert.CertificateFactory;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070036import java.security.cert.X509Certificate;
Brian Carlstromdb93b782011-07-01 00:12:17 -070037import java.util.ArrayList;
38import java.util.List;
Brian Carlstrom8e9929c2011-05-17 00:40:28 -070039import java.util.concurrent.BlockingQueue;
40import java.util.concurrent.LinkedBlockingQueue;
Brian Carlstromdb93b782011-07-01 00:12:17 -070041import libcore.util.Objects;
42import org.apache.harmony.xnet.provider.jsse.TrustedCertificateStore;
Brian Carlstromb9a07c12011-04-11 09:03:51 -070043
44/**
Brian Carlstrom93201f52011-06-09 15:05:35 -070045 * The {@code KeyChain} class provides access to private keys and
46 * their corresponding certificate chains in credential storage.
47 *
48 * <p>Applications accessing the {@code KeyChain} normally go through
49 * these steps:
50 *
51 * <ol>
52 *
53 * <li>Receive a callback from an {@link javax.net.ssl.X509KeyManager
54 * X509KeyManager} that a private key is requested.
55 *
56 * <li>Call {@link #choosePrivateKeyAlias
57 * choosePrivateKeyAlias} to allow the user to select from a
58 * list of currently available private keys and corresponding
59 * certificate chains. The chosen alias will be returned by the
60 * callback {@link KeyChainAliasCallback#alias}, or null if no private
61 * key is available or the user cancels the request.
62 *
63 * <li>Call {@link #getPrivateKey} and {@link #getCertificateChain} to
64 * retrieve the credentials to return to the corresponding {@link
65 * javax.net.ssl.X509KeyManager} callbacks.
66 *
67 * </ol>
68 *
69 * <p>An application may remember the value of a selected alias to
70 * avoid prompting the user with {@link #choosePrivateKeyAlias
71 * choosePrivateKeyAlias} on subsequent connections. If the alias is
72 * no longer valid, null will be returned on lookups using that value
Brian Carlstromca43c452011-06-29 18:53:17 -070073 *
74 * <p>An application can request the installation of private keys and
75 * certificates via the {@code Intent} provided by {@link
76 * #createInstallIntent}. Private keys installed via this {@code
77 * Intent} will be accessible via {@link #choosePrivateKeyAlias} while
78 * Certificate Authority (CA) certificates will be trusted by all
79 * applications through the default {@code X509TrustManager}.
Brian Carlstromb9a07c12011-04-11 09:03:51 -070080 */
Brian Carlstrom93201f52011-06-09 15:05:35 -070081// TODO reference intent for credential installation when public
Brian Carlstromb9a07c12011-04-11 09:03:51 -070082public final class KeyChain {
83
84 private static final String TAG = "KeyChain";
85
86 /**
87 * @hide Also used by KeyChainService implementation
88 */
89 public static final String ACCOUNT_TYPE = "com.android.keychain";
90
91 /**
Brian Carlstroma00a2b32011-06-29 10:42:35 -070092 * Action to bring up the KeyChainActivity
93 */
94 private static final String ACTION_CHOOSER = "com.android.keychain.CHOOSER";
95
96 /**
97 * Extra for use with {@link #ACTION_CHOOSER}
Brian Carlstromba1a6672011-05-24 21:54:37 -070098 * @hide Also used by KeyChainActivity implementation
Brian Carlstromb9a07c12011-04-11 09:03:51 -070099 */
Brian Carlstromba1a6672011-05-24 21:54:37 -0700100 public static final String EXTRA_RESPONSE = "response";
101
102 /**
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700103 * Extra for use with {@link #ACTION_CHOOSER}
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700104 * @hide Also used by KeyChainActivity implementation
105 */
106 public static final String EXTRA_HOST = "host";
107
108 /**
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700109 * Extra for use with {@link #ACTION_CHOOSER}
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700110 * @hide Also used by KeyChainActivity implementation
111 */
112 public static final String EXTRA_PORT = "port";
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_ALIAS = "alias";
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_SENDER = "sender";
125
126 /**
Selim Gurun93ba4fe2012-02-14 11:48:49 -0800127 * Action to bring up the CertInstaller.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700128 */
129 private static final String ACTION_INSTALL = "android.credentials.INSTALL";
130
131 /**
132 * Optional extra to specify a {@code String} credential name on
133 * the {@code Intent} returned by {@link #createInstallIntent}.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700134 */
135 // Compatible with old com.android.certinstaller.CredentialHelper.CERT_NAME_KEY
136 public static final String EXTRA_NAME = "name";
137
138 /**
139 * Optional extra to specify an X.509 certificate to install on
140 * the {@code Intent} returned by {@link #createInstallIntent}.
141 * The extra value should be a PEM or ASN.1 DER encoded {@code
142 * byte[]}. An {@link X509Certificate} can be converted to DER
143 * encoded bytes with {@link X509Certificate#getEncoded}.
144 *
145 * <p>{@link #EXTRA_NAME} may be used to provide a default alias
146 * name for the installed certificate.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700147 */
148 // Compatible with old android.security.Credentials.CERTIFICATE
149 public static final String EXTRA_CERTIFICATE = "CERT";
150
151 /**
152 * Optional extra for use with the {@code Intent} returned by
153 * {@link #createInstallIntent} to specify a PKCS#12 key store to
154 * install. The extra value should be a {@code byte[]}. The bytes
155 * may come from an external source or be generated with {@link
Brian Carlstromca43c452011-06-29 18:53:17 -0700156 * java.security.KeyStore#store} on a "PKCS12" instance.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700157 *
158 * <p>The user will be prompted for the password to load the key store.
159 *
160 * <p>The key store will be scanned for {@link
161 * java.security.KeyStore.PrivateKeyEntry} entries and both the
162 * private key and associated certificate chain will be installed.
163 *
164 * <p>{@link #EXTRA_NAME} may be used to provide a default alias
165 * name for the installed credentials.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700166 */
167 // Compatible with old android.security.Credentials.PKCS12
168 public static final String EXTRA_PKCS12 = "PKCS12";
169
Selim Gurun93ba4fe2012-02-14 11:48:49 -0800170
171 /**
172 * @hide TODO This is temporary and will be removed
173 * Broadcast Action: Indicates the trusted storage has changed. Sent when
174 * one of this happens:
175 *
176 * <ul>
177 * <li>a new CA is added,
178 * <li>an existing CA is removed or disabled,
179 * <li>a disabled CA is enabled,
180 * <li>trusted storage is reset (all user certs are cleared),
181 * <li>when permission to access a private key is changed.
182 * </ul>
183 */
184 public static final String ACTION_STORAGE_CHANGED = "android.security.STORAGE_CHANGED";
185
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700186 /**
187 * Returns an {@code Intent} that can be used for credential
188 * installation. The intent may be used without any extras, in
189 * which case the user will be able to install credentials from
190 * their own source.
191 *
192 * <p>Alternatively, {@link #EXTRA_CERTIFICATE} or {@link
193 * #EXTRA_PKCS12} maybe used to specify the bytes of an X.509
194 * certificate or a PKCS#12 key store for installation. These
Brian Carlstromca43c452011-06-29 18:53:17 -0700195 * extras may be combined with {@link #EXTRA_NAME} to provide a
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700196 * default alias name for credentials being installed.
197 *
198 * <p>When used with {@link Activity#startActivityForResult},
199 * {@link Activity#RESULT_OK} will be returned if a credential was
200 * successfully installed, otherwise {@link
201 * Activity#RESULT_CANCELED} will be returned.
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700202 */
203 public static Intent createInstallIntent() {
204 Intent intent = new Intent(ACTION_INSTALL);
205 intent.setClassName("com.android.certinstaller",
206 "com.android.certinstaller.CertInstallerMain");
207 return intent;
208 }
209
210 /**
Brian Carlstromba1a6672011-05-24 21:54:37 -0700211 * Launches an {@code Activity} for the user to select the alias
212 * for a private key and certificate pair for authentication. The
213 * selected alias or null will be returned via the
Brian Carlstrom93201f52011-06-09 15:05:35 -0700214 * KeyChainAliasCallback callback.
215 *
216 * <p>{@code keyTypes} and {@code issuers} may be used to
217 * highlight suggested choices to the user, although to cope with
218 * sometimes erroneous values provided by servers, the user may be
219 * able to override these suggestions.
220 *
221 * <p>{@code host} and {@code port} may be used to give the user
222 * more context about the server requesting the credentials.
223 *
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700224 * <p>{@code alias} allows the chooser to preselect an existing
225 * alias which will still be subject to user confirmation.
226 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700227 * @param activity The {@link Activity} context to use for
228 * launching the new sub-Activity to prompt the user to select
229 * a private key; used only to call startActivity(); must not
230 * be null.
231 * @param response Callback to invoke when the request completes;
232 * must not be null
233 * @param keyTypes The acceptable types of asymmetric keys such as
234 * "RSA" or "DSA", or a null array.
235 * @param issuers The acceptable certificate issuers for the
236 * certificate matching the private key, or null.
237 * @param host The host name of the server requesting the
238 * certificate, or null if unavailable.
239 * @param port The port number of the server requesting the
240 * certificate, or -1 if unavailable.
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700241 * @param alias The alias to preselect if available, or null if
242 * unavailable.
Brian Carlstromba1a6672011-05-24 21:54:37 -0700243 */
Brian Carlstrom93201f52011-06-09 15:05:35 -0700244 public static void choosePrivateKeyAlias(Activity activity, KeyChainAliasCallback response,
245 String[] keyTypes, Principal[] issuers,
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700246 String host, int port,
247 String alias) {
Brian Carlstrom93201f52011-06-09 15:05:35 -0700248 /*
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700249 * TODO currently keyTypes, issuers are unused. They are meant
250 * to follow the semantics and purpose of X509KeyManager
251 * method arguments.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700252 *
253 * keyTypes would allow the list to be filtered and typically
254 * will be set correctly by the server. In practice today,
255 * most all users will want only RSA, rarely DSA, and usually
256 * only a small number of certs will be available.
257 *
258 * issuers is typically not useful. Some servers historically
259 * will send the entire list of public CAs known to the
260 * server. Others will send none. If this is used, if there
261 * are no matches after applying the constraint, it should be
262 * ignored.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700263 */
Brian Carlstromba1a6672011-05-24 21:54:37 -0700264 if (activity == null) {
265 throw new NullPointerException("activity == null");
266 }
267 if (response == null) {
268 throw new NullPointerException("response == null");
269 }
Brian Carlstroma00a2b32011-06-29 10:42:35 -0700270 Intent intent = new Intent(ACTION_CHOOSER);
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700271 intent.putExtra(EXTRA_RESPONSE, new AliasResponse(response));
Brian Carlstrom67c30df2011-06-24 02:13:23 -0700272 intent.putExtra(EXTRA_HOST, host);
273 intent.putExtra(EXTRA_PORT, port);
274 intent.putExtra(EXTRA_ALIAS, alias);
275 // the PendingIntent is used to get calling package name
276 intent.putExtra(EXTRA_SENDER, PendingIntent.getActivity(activity, 0, new Intent(), 0));
Brian Carlstromba1a6672011-05-24 21:54:37 -0700277 activity.startActivity(intent);
278 }
279
Brian Carlstrom93201f52011-06-09 15:05:35 -0700280 private static class AliasResponse extends IKeyChainAliasCallback.Stub {
Brian Carlstrom93201f52011-06-09 15:05:35 -0700281 private final KeyChainAliasCallback keyChainAliasResponse;
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700282 private AliasResponse(KeyChainAliasCallback keyChainAliasResponse) {
Brian Carlstromba1a6672011-05-24 21:54:37 -0700283 this.keyChainAliasResponse = keyChainAliasResponse;
284 }
285 @Override public void alias(String alias) {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700286 keyChainAliasResponse.alias(alias);
Brian Carlstromba1a6672011-05-24 21:54:37 -0700287 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700288 }
289
290 /**
Brian Carlstromba1a6672011-05-24 21:54:37 -0700291 * Returns the {@code PrivateKey} for the requested alias, or null
292 * if no there is no result.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700293 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700294 * @param alias The alias of the desired private key, typically
295 * returned via {@link KeyChainAliasCallback#alias}.
296 * @throws KeyChainException if the alias was valid but there was some problem accessing it.
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700297 */
Brian Carlstromba1a6672011-05-24 21:54:37 -0700298 public static PrivateKey getPrivateKey(Context context, String alias)
Brian Carlstrom93201f52011-06-09 15:05:35 -0700299 throws KeyChainException, InterruptedException {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700300 if (alias == null) {
301 throw new NullPointerException("alias == null");
302 }
Brian Carlstromd7524722011-05-17 16:20:36 -0700303 KeyChainConnection keyChainConnection = bind(context);
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700304 try {
Brian Carlstromd7524722011-05-17 16:20:36 -0700305 IKeyChainService keyChainService = keyChainConnection.getService();
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700306 byte[] privateKeyBytes = keyChainService.getPrivateKey(alias);
Brian Carlstromba1a6672011-05-24 21:54:37 -0700307 return toPrivateKey(privateKeyBytes);
Brian Carlstrom93201f52011-06-09 15:05:35 -0700308 } catch (RemoteException e) {
309 throw new KeyChainException(e);
310 } catch (RuntimeException e) {
311 // only certain RuntimeExceptions can be propagated across the IKeyChainService call
312 throw new KeyChainException(e);
Brian Carlstromba1a6672011-05-24 21:54:37 -0700313 } finally {
314 keyChainConnection.close();
315 }
316 }
317
318 /**
319 * Returns the {@code X509Certificate} chain for the requested
320 * alias, or null if no there is no result.
Brian Carlstrom93201f52011-06-09 15:05:35 -0700321 *
Brian Carlstrom93201f52011-06-09 15:05:35 -0700322 * @param alias The alias of the desired certificate chain, typically
323 * returned via {@link KeyChainAliasCallback#alias}.
324 * @throws KeyChainException if the alias was valid but there was some problem accessing it.
Brian Carlstromba1a6672011-05-24 21:54:37 -0700325 */
326 public static X509Certificate[] getCertificateChain(Context context, String alias)
Brian Carlstrom93201f52011-06-09 15:05:35 -0700327 throws KeyChainException, InterruptedException {
Brian Carlstromba1a6672011-05-24 21:54:37 -0700328 if (alias == null) {
329 throw new NullPointerException("alias == null");
330 }
331 KeyChainConnection keyChainConnection = bind(context);
332 try {
Brian Carlstromba1a6672011-05-24 21:54:37 -0700333 IKeyChainService keyChainService = keyChainConnection.getService();
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700334 byte[] certificateBytes = keyChainService.getCertificate(alias);
Brian Carlstromdb93b782011-07-01 00:12:17 -0700335 List<X509Certificate> chain = new ArrayList<X509Certificate>();
336 chain.add(toCertificate(certificateBytes));
337 TrustedCertificateStore store = new TrustedCertificateStore();
338 for (int i = 0; true; i++) {
339 X509Certificate cert = chain.get(i);
340 if (Objects.equal(cert.getSubjectX500Principal(), cert.getIssuerX500Principal())) {
341 break;
342 }
343 X509Certificate issuer = store.findIssuer(cert);
344 if (issuer == null) {
345 break;
346 }
347 chain.add(issuer);
348 }
349 return chain.toArray(new X509Certificate[chain.size()]);
Brian Carlstrom93201f52011-06-09 15:05:35 -0700350 } catch (RemoteException e) {
351 throw new KeyChainException(e);
352 } catch (RuntimeException e) {
353 // only certain RuntimeExceptions can be propagated across the IKeyChainService call
354 throw new KeyChainException(e);
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700355 } finally {
Brian Carlstromd7524722011-05-17 16:20:36 -0700356 keyChainConnection.close();
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700357 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700358 }
359
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700360 private static PrivateKey toPrivateKey(byte[] bytes) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700361 if (bytes == null) {
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700362 throw new IllegalArgumentException("bytes == null");
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700363 }
364 try {
Brian Carlstrom9d7faa92011-06-07 13:45:33 -0700365 KeyPair keyPair = (KeyPair) Credentials.convertFromPem(bytes).get(0);
366 return keyPair.getPrivate();
367 } catch (IOException e) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700368 throw new AssertionError(e);
369 }
370 }
371
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700372 private static X509Certificate toCertificate(byte[] bytes) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700373 if (bytes == null) {
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700374 throw new IllegalArgumentException("bytes == null");
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700375 }
376 try {
377 CertificateFactory certFactory = CertificateFactory.getInstance("X.509");
378 Certificate cert = certFactory.generateCertificate(new ByteArrayInputStream(bytes));
379 return (X509Certificate) cert;
380 } catch (CertificateException e) {
381 throw new AssertionError(e);
382 }
383 }
384
Brian Carlstromd7524722011-05-17 16:20:36 -0700385 /**
386 * @hide for reuse by CertInstaller and Settings.
387 * @see KeyChain#bind
388 */
389 public final static class KeyChainConnection implements Closeable {
390 private final Context context;
391 private final ServiceConnection serviceConnection;
392 private final IKeyChainService service;
393 private KeyChainConnection(Context context,
394 ServiceConnection serviceConnection,
395 IKeyChainService service) {
396 this.context = context;
397 this.serviceConnection = serviceConnection;
398 this.service = service;
399 }
400 @Override public void close() {
401 context.unbindService(serviceConnection);
402 }
403 public IKeyChainService getService() {
404 return service;
405 }
406 }
407
408 /**
409 * @hide for reuse by CertInstaller and Settings.
410 *
411 * Caller should call unbindService on the result when finished.
412 */
413 public static KeyChainConnection bind(Context context) throws InterruptedException {
414 if (context == null) {
415 throw new NullPointerException("context == null");
416 }
417 ensureNotOnMainThread(context);
418 final BlockingQueue<IKeyChainService> q = new LinkedBlockingQueue<IKeyChainService>(1);
419 ServiceConnection keyChainServiceConnection = new ServiceConnection() {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700420 volatile boolean mConnectedAtLeastOnce = false;
Brian Carlstromd7524722011-05-17 16:20:36 -0700421 @Override public void onServiceConnected(ComponentName name, IBinder service) {
Fred Quintanaab8b84a2011-07-13 14:55:39 -0700422 if (!mConnectedAtLeastOnce) {
423 mConnectedAtLeastOnce = true;
424 try {
425 q.put(IKeyChainService.Stub.asInterface(service));
426 } catch (InterruptedException e) {
427 // will never happen, since the queue starts with one available slot
428 }
Brian Carlstromd7524722011-05-17 16:20:36 -0700429 }
430 }
431 @Override public void onServiceDisconnected(ComponentName name) {}
432 };
433 boolean isBound = context.bindService(new Intent(IKeyChainService.class.getName()),
434 keyChainServiceConnection,
435 Context.BIND_AUTO_CREATE);
436 if (!isBound) {
437 throw new AssertionError("could not bind to KeyChainService");
438 }
439 return new KeyChainConnection(context, keyChainServiceConnection, q.take());
440 }
441
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700442 private static void ensureNotOnMainThread(Context context) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700443 Looper looper = Looper.myLooper();
Brian Carlstrom8e9929c2011-05-17 00:40:28 -0700444 if (looper != null && looper == context.getMainLooper()) {
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700445 throw new IllegalStateException(
446 "calling this from your main thread can lead to deadlock");
447 }
448 }
Brian Carlstromb9a07c12011-04-11 09:03:51 -0700449}