blob: 9d03f77fe27583ed9b9612dfcdfaa775f866266a [file] [log] [blame]
Brian Carlstrom3e6251d2011-04-11 09:05:06 -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 */
16
17package com.android.keychain;
18
Brian Carlstrom65e649e2011-06-24 02:13:28 -070019import android.app.Activity;
Robin Lee8eb453b2015-02-17 14:13:36 +000020import android.app.ActivityManagerNative;
Robin Leeb46e4932015-02-03 18:17:39 +000021import android.app.admin.IDevicePolicyManager;
Brian Carlstrom65e649e2011-06-24 02:13:28 -070022import android.app.AlertDialog;
23import android.app.Dialog;
24import android.app.PendingIntent;
Robin Leeb46e4932015-02-03 18:17:39 +000025import android.content.Context;
Brian Carlstrom65e649e2011-06-24 02:13:28 -070026import android.content.DialogInterface;
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070027import android.content.Intent;
Brian Carlstrom65e649e2011-06-24 02:13:28 -070028import android.content.pm.PackageManager;
29import android.content.res.Resources;
Robin Lee606d9d02015-05-05 15:57:13 +010030import android.net.Uri;
Brian Carlstrom65e649e2011-06-24 02:13:28 -070031import android.os.AsyncTask;
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070032import android.os.Bundle;
Robin Leeb46e4932015-02-03 18:17:39 +000033import android.os.IBinder;
34import android.os.RemoteException;
35import android.os.ServiceManager;
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070036import android.security.Credentials;
Brian Carlstromf5b50a42011-06-09 16:05:09 -070037import android.security.IKeyChainAliasCallback;
Brian Carlstrombb04f702011-05-24 21:54:51 -070038import android.security.KeyChain;
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070039import android.security.KeyStore;
Fred Quintanafb2e18e2011-07-13 14:54:05 -070040import android.util.Log;
Brian Carlstrom65e649e2011-06-24 02:13:28 -070041import android.view.LayoutInflater;
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070042import android.view.View;
Brian Carlstrom65e649e2011-06-24 02:13:28 -070043import android.view.ViewGroup;
Selim Gurun9c2b71c2012-03-22 15:51:14 -070044import android.widget.AdapterView;
Brian Carlstrom65e649e2011-06-24 02:13:28 -070045import android.widget.BaseAdapter;
46import android.widget.Button;
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070047import android.widget.ListView;
Brian Carlstrom65e649e2011-06-24 02:13:28 -070048import android.widget.RadioButton;
49import android.widget.TextView;
50import com.android.org.bouncycastle.asn1.x509.X509Name;
51import java.io.ByteArrayInputStream;
52import java.io.InputStream;
53import java.security.cert.CertificateException;
54import java.security.cert.CertificateFactory;
55import java.security.cert.X509Certificate;
56import java.util.ArrayList;
57import java.util.Arrays;
58import java.util.Collections;
Robin Leeb46e4932015-02-03 18:17:39 +000059import java.util.concurrent.ExecutionException;
Brian Carlstrom65e649e2011-06-24 02:13:28 -070060import java.util.List;
Fred Quintanafb2e18e2011-07-13 14:54:05 -070061
Brian Carlstrom65e649e2011-06-24 02:13:28 -070062import javax.security.auth.x500.X500Principal;
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070063
Brian Carlstrom65e649e2011-06-24 02:13:28 -070064public class KeyChainActivity extends Activity {
Fred Quintanafb2e18e2011-07-13 14:54:05 -070065 private static final String TAG = "KeyChain";
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070066
67 private static String KEY_STATE = "state";
68
69 private static final int REQUEST_UNLOCK = 1;
70
Fred Quintanafb2e18e2011-07-13 14:54:05 -070071 private int mSenderUid;
72
73 private PendingIntent mSender;
74
Kenny Root6ba32f22014-07-31 14:03:16 -070075 private static enum State { INITIAL, UNLOCK_REQUESTED, UNLOCK_CANCELED };
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070076
77 private State mState;
78
Brian Carlstrom65e649e2011-06-24 02:13:28 -070079 // beware that some of these KeyStore operations such as saw and
80 // get do file I/O in the remote keystore process and while they
81 // do not cause StrictMode violations, they logically should not
82 // be done on the UI thread.
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070083 private KeyStore mKeyStore = KeyStore.getInstance();
84
Brian Carlstrom3e6251d2011-04-11 09:05:06 -070085 @Override public void onCreate(Bundle savedState) {
86 super.onCreate(savedState);
87 if (savedState == null) {
88 mState = State.INITIAL;
89 } else {
90 mState = (State) savedState.getSerializable(KEY_STATE);
91 if (mState == null) {
92 mState = State.INITIAL;
93 }
94 }
95 }
96
97 @Override public void onResume() {
98 super.onResume();
99
Fred Quintanafb2e18e2011-07-13 14:54:05 -0700100 mSender = getIntent().getParcelableExtra(KeyChain.EXTRA_SENDER);
101 if (mSender == null) {
102 // if no sender, bail, we need to identify the app to the user securely.
103 finish(null);
104 return;
105 }
106 try {
107 mSenderUid = getPackageManager().getPackageInfo(
108 mSender.getIntentSender().getTargetPackage(), 0).applicationInfo.uid;
109 } catch (PackageManager.NameNotFoundException e) {
110 // if unable to find the sender package info bail,
111 // we need to identify the app to the user securely.
112 finish(null);
113 return;
114 }
115
Brian Carlstrom3e6251d2011-04-11 09:05:06 -0700116 // see if KeyStore has been unlocked, if not start activity to do so
117 switch (mState) {
118 case INITIAL:
Kenny Root4ff22962013-02-14 10:17:06 -0800119 if (!mKeyStore.isUnlocked()) {
Brian Carlstrom3e6251d2011-04-11 09:05:06 -0700120 mState = State.UNLOCK_REQUESTED;
121 this.startActivityForResult(new Intent(Credentials.UNLOCK_ACTION),
122 REQUEST_UNLOCK);
123 // Note that Credentials.unlock will start an
124 // Activity and we will be paused but then resumed
125 // when the unlock Activity completes and our
126 // onActivityResult is called with REQUEST_UNLOCK
127 return;
128 }
Robin Leeb46e4932015-02-03 18:17:39 +0000129 chooseCertificate();
Brian Carlstrom3e6251d2011-04-11 09:05:06 -0700130 return;
131 case UNLOCK_REQUESTED:
132 // we've already asked, but have not heard back, probably just rotated.
133 // wait to hear back via onActivityResult
134 return;
Kenny Root6ba32f22014-07-31 14:03:16 -0700135 case UNLOCK_CANCELED:
136 // User wanted to cancel the request, so exit.
137 mState = State.INITIAL;
Kenny Root13e867c2014-11-14 08:34:57 -0800138 finish(null);
Kenny Root6ba32f22014-07-31 14:03:16 -0700139 return;
Brian Carlstrom3e6251d2011-04-11 09:05:06 -0700140 default:
141 throw new AssertionError();
142 }
143 }
144
Robin Leeb46e4932015-02-03 18:17:39 +0000145 private void chooseCertificate() {
146 // Start loading the set of certs to choose from now- if device policy doesn't return an
147 // alias, having aliases loading already will save some time waiting for UI to start.
148 final AliasLoader loader = new AliasLoader();
149 loader.execute();
150
151 final IKeyChainAliasCallback.Stub callback = new IKeyChainAliasCallback.Stub() {
152 @Override public void alias(String alias) {
153 // Use policy-suggested alias if provided
154 if (alias != null) {
155 finish(alias);
156 return;
157 }
158
159 // No suggested alias - instead finish loading and show UI to pick one
160 final CertificateAdapter certAdapter;
161 try {
162 certAdapter = loader.get();
163 } catch (InterruptedException | ExecutionException e) {
164 Log.e(TAG, "Loading certificate aliases interrupted", e);
165 finish(null);
166 return;
167 }
168 runOnUiThread(new Runnable() {
169 @Override public void run() {
170 displayCertChooserDialog(certAdapter);
171 }
172 });
173 }
174 };
175
176 // Give a profile or device owner the chance to intercept the request, if a private key
177 // access listener is registered with the DevicePolicyManagerService.
178 IDevicePolicyManager devicePolicyManager = IDevicePolicyManager.Stub.asInterface(
179 ServiceManager.getService(Context.DEVICE_POLICY_SERVICE));
180
Robin Lee606d9d02015-05-05 15:57:13 +0100181 Uri uri = getIntent().getParcelableExtra(KeyChain.EXTRA_URI);
Robin Leeb46e4932015-02-03 18:17:39 +0000182 String alias = getIntent().getStringExtra(KeyChain.EXTRA_ALIAS);
Robin Leeb46e4932015-02-03 18:17:39 +0000183 try {
Robin Lee9bfaabb2015-07-31 14:52:54 +0100184 devicePolicyManager.choosePrivateKeyAlias(mSenderUid, uri, alias, callback);
Robin Leeb46e4932015-02-03 18:17:39 +0000185 } catch (RemoteException e) {
Robin Lee8eb453b2015-02-17 14:13:36 +0000186 Log.e(TAG, "Unable to request alias from DevicePolicyManager", e);
Robin Leeb46e4932015-02-03 18:17:39 +0000187 // Proceed without a suggested alias.
188 try {
189 callback.alias(null);
190 } catch (RemoteException shouldNeverHappen) {
191 finish(null);
192 }
193 }
Brian Carlstrom91940e72011-06-28 20:37:31 -0700194 }
195
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700196 private class AliasLoader extends AsyncTask<Void, Void, CertificateAdapter> {
197 @Override protected CertificateAdapter doInBackground(Void... params) {
Alex Klyubin44c777b2015-06-08 09:46:15 -0700198 String[] aliasArray = mKeyStore.list(Credentials.USER_PRIVATE_KEY);
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700199 List<String> aliasList = ((aliasArray == null)
200 ? Collections.<String>emptyList()
201 : Arrays.asList(aliasArray));
202 Collections.sort(aliasList);
203 return new CertificateAdapter(aliasList);
Brian Carlstrom3e6251d2011-04-11 09:05:06 -0700204 }
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700205 }
Brian Carlstrom3e6251d2011-04-11 09:05:06 -0700206
Brian Carlstrom91940e72011-06-28 20:37:31 -0700207 private void displayCertChooserDialog(final CertificateAdapter adapter) {
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700208 AlertDialog.Builder builder = new AlertDialog.Builder(this);
Brian Carlstromdf172302011-06-26 17:13:54 -0700209
Brian Carlstrom91940e72011-06-28 20:37:31 -0700210 boolean empty = adapter.mAliases.isEmpty();
Brian Carlstromdf172302011-06-26 17:13:54 -0700211 int negativeLabel = empty ? android.R.string.cancel : R.string.deny_button;
Robin Lee8c9d4332016-04-26 12:49:24 +0100212 builder.setNeutralButton(negativeLabel, new DialogInterface.OnClickListener() {
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700213 @Override public void onClick(DialogInterface dialog, int id) {
214 dialog.cancel(); // will cause OnDismissListener to be called
Brian Carlstrom3e6251d2011-04-11 09:05:06 -0700215 }
216 });
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700217
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700218 String title;
Robin Lee8c9d4332016-04-26 12:49:24 +0100219 int selectedItem = -1;
Brian Carlstromdf172302011-06-26 17:13:54 -0700220 Resources res = getResources();
221 if (empty) {
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700222 title = res.getString(R.string.title_no_certs);
223 } else {
224 title = res.getString(R.string.title_select_cert);
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700225 String alias = getIntent().getStringExtra(KeyChain.EXTRA_ALIAS);
Robin Lee8c9d4332016-04-26 12:49:24 +0100226
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700227 if (alias != null) {
Brian Carlstrom62316552011-07-10 12:26:12 -0700228 // if alias was requested, set it if found
Brian Carlstrom5dd41f62011-06-29 18:51:34 -0700229 int adapterPosition = adapter.mAliases.indexOf(alias);
230 if (adapterPosition != -1) {
Robin Lee8c9d4332016-04-26 12:49:24 +0100231 // increase by 1 to account for item 0 being the header.
232 selectedItem = adapterPosition + 1;
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700233 }
Brian Carlstrom62316552011-07-10 12:26:12 -0700234 } else if (adapter.mAliases.size() == 1) {
235 // if only one choice, preselect it
Robin Lee8c9d4332016-04-26 12:49:24 +0100236 selectedItem = 1;
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700237 }
238
239 builder.setPositiveButton(R.string.allow_button, new DialogInterface.OnClickListener() {
240 @Override public void onClick(DialogInterface dialog, int id) {
Robin Lee8c9d4332016-04-26 12:49:24 +0100241 if (dialog instanceof AlertDialog) {
242 ListView lv = ((AlertDialog) dialog).getListView();
243 int listViewPosition = lv.getCheckedItemPosition();
244 int adapterPosition = listViewPosition-1;
245 String alias = ((adapterPosition >= 0)
246 ? adapter.getItem(adapterPosition)
247 : null);
248 finish(alias);
249 } else {
250 Log.wtf(TAG, "Expected AlertDialog, got " + dialog, new Exception());
251 finish(null);
252 }
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700253 }
254 });
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700255 }
256 builder.setTitle(title);
Robin Lee8c9d4332016-04-26 12:49:24 +0100257 builder.setSingleChoiceItems(adapter, selectedItem, null);
258 builder.setNegativeButton(R.string.install_new_cert_button_label,
259 new DialogInterface.OnClickListener() {
260 @Override public void onClick(DialogInterface dialog, int id) {
261 // remove dialog so that we will recreate with
262 // possibly new content after install returns
263 dialog.dismiss();
264 Credentials.getInstance().install(KeyChainActivity.this);
265 }
266 });
267 final AlertDialog dialog = builder.create();
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700268
Robin Lee8c9d4332016-04-26 12:49:24 +0100269 // Show text above and below the list, to explain what the certificate will be used for
270 // and how to install another one respectively.
271 TextView contextView = (TextView) View.inflate(this, R.layout.cert_chooser_header, null);
272 TextView installText = (TextView) View.inflate(this, R.layout.cert_chooser_footer, null);
273
274 final ListView lv = dialog.getListView();
275 lv.addHeaderView(contextView, null, false);
276 lv.addFooterView(installText, null, false);
277 lv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
278 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
279 lv.setItemChecked(position, true);
280 adapter.notifyDataSetChanged();
281 }
282 });
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700283
284 // getTargetPackage guarantees that the returned string is
285 // supplied by the system, so that an application can not
286 // spoof its package.
Fred Quintanafb2e18e2011-07-13 14:54:05 -0700287 String pkg = mSender.getIntentSender().getTargetPackage();
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700288 PackageManager pm = getPackageManager();
289 CharSequence applicationLabel;
290 try {
291 applicationLabel = pm.getApplicationLabel(pm.getApplicationInfo(pkg, 0)).toString();
292 } catch (PackageManager.NameNotFoundException e) {
293 applicationLabel = pkg;
294 }
295 String appMessage = String.format(res.getString(R.string.requesting_application),
296 applicationLabel);
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700297 String contextMessage = appMessage;
Robin Lee606d9d02015-05-05 15:57:13 +0100298 Uri uri = getIntent().getParcelableExtra(KeyChain.EXTRA_URI);
299 if (uri != null) {
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700300 String hostMessage = String.format(res.getString(R.string.requesting_server),
Robin Lee606d9d02015-05-05 15:57:13 +0100301 uri.getAuthority());
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700302 if (contextMessage == null) {
303 contextMessage = hostMessage;
304 } else {
305 contextMessage += " " + hostMessage;
306 }
307 }
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700308 contextView.setText(contextMessage);
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700309
310 String installMessage = String.format(res.getString(R.string.install_new_cert_message),
311 Credentials.EXTENSION_PFX, Credentials.EXTENSION_P12);
Brian Carlstrom5dd41f62011-06-29 18:51:34 -0700312 installText.setText(installMessage);
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700313
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700314 dialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
315 @Override public void onCancel(DialogInterface dialog) {
316 finish(null);
317 }
318 });
Brian Carlstrom91940e72011-06-28 20:37:31 -0700319 dialog.show();
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700320 }
321
322 private class CertificateAdapter extends BaseAdapter {
323 private final List<String> mAliases;
324 private final List<String> mSubjects = new ArrayList<String>();
325 private CertificateAdapter(List<String> aliases) {
326 mAliases = aliases;
327 mSubjects.addAll(Collections.nCopies(aliases.size(), (String) null));
328 }
329 @Override public int getCount() {
330 return mAliases.size();
331 }
Brian Carlstrom5dd41f62011-06-29 18:51:34 -0700332 @Override public String getItem(int adapterPosition) {
333 return mAliases.get(adapterPosition);
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700334 }
Brian Carlstrom5dd41f62011-06-29 18:51:34 -0700335 @Override public long getItemId(int adapterPosition) {
336 return adapterPosition;
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700337 }
Brian Carlstrom5dd41f62011-06-29 18:51:34 -0700338 @Override public View getView(final int adapterPosition, View view, ViewGroup parent) {
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700339 ViewHolder holder;
340 if (view == null) {
341 LayoutInflater inflater = LayoutInflater.from(KeyChainActivity.this);
342 view = inflater.inflate(R.layout.cert_item, parent, false);
343 holder = new ViewHolder();
344 holder.mAliasTextView = (TextView) view.findViewById(R.id.cert_item_alias);
345 holder.mSubjectTextView = (TextView) view.findViewById(R.id.cert_item_subject);
346 holder.mRadioButton = (RadioButton) view.findViewById(R.id.cert_item_selected);
347 view.setTag(holder);
348 } else {
349 holder = (ViewHolder) view.getTag();
350 }
351
Brian Carlstrom5dd41f62011-06-29 18:51:34 -0700352 String alias = mAliases.get(adapterPosition);
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700353
354 holder.mAliasTextView.setText(alias);
355
Brian Carlstrom5dd41f62011-06-29 18:51:34 -0700356 String subject = mSubjects.get(adapterPosition);
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700357 if (subject == null) {
Brian Carlstrom5dd41f62011-06-29 18:51:34 -0700358 new CertLoader(adapterPosition, holder.mSubjectTextView).execute();
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700359 } else {
360 holder.mSubjectTextView.setText(subject);
361 }
362
363 ListView lv = (ListView)parent;
Brian Carlstrom5dd41f62011-06-29 18:51:34 -0700364 int listViewCheckedItemPosition = lv.getCheckedItemPosition();
365 int adapterCheckedItemPosition = listViewCheckedItemPosition-1;
366 holder.mRadioButton.setChecked(adapterPosition == adapterCheckedItemPosition);
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700367 return view;
368 }
369
370 private class CertLoader extends AsyncTask<Void, Void, String> {
Brian Carlstrom5dd41f62011-06-29 18:51:34 -0700371 private final int mAdapterPosition;
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700372 private final TextView mSubjectView;
Brian Carlstrom5dd41f62011-06-29 18:51:34 -0700373 private CertLoader(int adapterPosition, TextView subjectView) {
374 mAdapterPosition = adapterPosition;
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700375 mSubjectView = subjectView;
376 }
377 @Override protected String doInBackground(Void... params) {
Brian Carlstrom5dd41f62011-06-29 18:51:34 -0700378 String alias = mAliases.get(mAdapterPosition);
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700379 byte[] bytes = mKeyStore.get(Credentials.USER_CERTIFICATE + alias);
380 if (bytes == null) {
381 return null;
382 }
383 InputStream in = new ByteArrayInputStream(bytes);
384 X509Certificate cert;
385 try {
386 CertificateFactory cf = CertificateFactory.getInstance("X.509");
387 cert = (X509Certificate)cf.generateCertificate(in);
388 } catch (CertificateException ignored) {
389 return null;
390 }
391 // bouncycastle can handle the emailAddress OID of 1.2.840.113549.1.9.1
392 X500Principal subjectPrincipal = cert.getSubjectX500Principal();
393 X509Name subjectName = X509Name.getInstance(subjectPrincipal.getEncoded());
394 String subjectString = subjectName.toString(true, X509Name.DefaultSymbols);
395 return subjectString;
396 }
397 @Override protected void onPostExecute(String subjectString) {
Brian Carlstrom5dd41f62011-06-29 18:51:34 -0700398 mSubjects.set(mAdapterPosition, subjectString);
Brian Carlstrom65e649e2011-06-24 02:13:28 -0700399 mSubjectView.setText(subjectString);
400 }
401 }
402 }
403
404 private static class ViewHolder {
405 TextView mAliasTextView;
406 TextView mSubjectTextView;
407 RadioButton mRadioButton;
Brian Carlstrom3e6251d2011-04-11 09:05:06 -0700408 }
409
410 @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) {
411 switch (requestCode) {
412 case REQUEST_UNLOCK:
Kenny Root4ff22962013-02-14 10:17:06 -0800413 if (mKeyStore.isUnlocked()) {
Kenny Root6ba32f22014-07-31 14:03:16 -0700414 mState = State.INITIAL;
Robin Leeb46e4932015-02-03 18:17:39 +0000415 chooseCertificate();
Brian Carlstrom3e6251d2011-04-11 09:05:06 -0700416 } else {
417 // user must have canceled unlock, give up
Kenny Root6ba32f22014-07-31 14:03:16 -0700418 mState = State.UNLOCK_CANCELED;
Brian Carlstrom3e6251d2011-04-11 09:05:06 -0700419 }
420 return;
421 default:
422 throw new AssertionError();
423 }
424 }
425
Brian Carlstrombb04f702011-05-24 21:54:51 -0700426 private void finish(String alias) {
427 if (alias == null) {
428 setResult(RESULT_CANCELED);
429 } else {
430 Intent result = new Intent();
431 result.putExtra(Intent.EXTRA_TEXT, alias);
432 setResult(RESULT_OK, result);
433 }
Brian Carlstromf5b50a42011-06-09 16:05:09 -0700434 IKeyChainAliasCallback keyChainAliasResponse
435 = IKeyChainAliasCallback.Stub.asInterface(
Brian Carlstrombb04f702011-05-24 21:54:51 -0700436 getIntent().getIBinderExtra(KeyChain.EXTRA_RESPONSE));
437 if (keyChainAliasResponse != null) {
Brian Carlstrom7d9aa752011-07-07 11:52:27 -0700438 new ResponseSender(keyChainAliasResponse, alias).execute();
439 return;
440 }
441 finish();
442 }
443
444 private class ResponseSender extends AsyncTask<Void, Void, Void> {
445 private IKeyChainAliasCallback mKeyChainAliasResponse;
446 private String mAlias;
447 private ResponseSender(IKeyChainAliasCallback keyChainAliasResponse, String alias) {
448 mKeyChainAliasResponse = keyChainAliasResponse;
449 mAlias = alias;
450 }
451 @Override protected Void doInBackground(Void... unused) {
Brian Carlstrombb04f702011-05-24 21:54:51 -0700452 try {
Fred Quintanafb2e18e2011-07-13 14:54:05 -0700453 if (mAlias != null) {
454 KeyChain.KeyChainConnection connection = KeyChain.bind(KeyChainActivity.this);
455 try {
456 connection.getService().setGrant(mSenderUid, mAlias, true);
457 } finally {
458 connection.close();
459 }
460 }
Brian Carlstrom7d9aa752011-07-07 11:52:27 -0700461 mKeyChainAliasResponse.alias(mAlias);
Fred Quintanafb2e18e2011-07-13 14:54:05 -0700462 } catch (InterruptedException ignored) {
463 Thread.currentThread().interrupt();
464 Log.d(TAG, "interrupted while granting access", ignored);
Brian Carlstrom2a858832011-05-26 09:30:26 -0700465 } catch (Exception ignored) {
466 // don't just catch RemoteException, caller could
467 // throw back a RuntimeException across processes
468 // which we should protect against.
Fred Quintanafb2e18e2011-07-13 14:54:05 -0700469 Log.e(TAG, "error while granting access", ignored);
Brian Carlstrombb04f702011-05-24 21:54:51 -0700470 }
Brian Carlstrom7d9aa752011-07-07 11:52:27 -0700471 return null;
Brian Carlstrombb04f702011-05-24 21:54:51 -0700472 }
Brian Carlstrom7d9aa752011-07-07 11:52:27 -0700473 @Override protected void onPostExecute(Void unused) {
474 finish();
475 }
Brian Carlstrombb04f702011-05-24 21:54:51 -0700476 }
477
Brian Carlstrom9e606df2011-06-07 12:03:08 -0700478 @Override public void onBackPressed() {
479 finish(null);
480 }
481
Brian Carlstrom3e6251d2011-04-11 09:05:06 -0700482 @Override protected void onSaveInstanceState(Bundle savedState) {
483 super.onSaveInstanceState(savedState);
484 if (mState != State.INITIAL) {
485 savedState.putSerializable(KEY_STATE, mState);
486 }
487 }
488}