blob: a88aa8cb44015cbcd3181e807aeb4463a3c45301 [file] [log] [blame]
Robert Berry81ee34b2018-01-23 11:59:59 +00001/*
2 * Copyright (C) 2017 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 android.security.keystore.recovery;
18
19import android.annotation.NonNull;
20import android.annotation.Nullable;
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -080021import android.annotation.RequiresPermission;
Dmitry Dementyevf8ae5de2018-01-08 18:08:23 -080022import android.annotation.SystemApi;
Bo Zhub95c90c2018-04-10 13:58:25 -070023import android.app.KeyguardManager;
Robert Berry81ee34b2018-01-23 11:59:59 +000024import android.app.PendingIntent;
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -080025import android.content.Context;
Robert Berry81ee34b2018-01-23 11:59:59 +000026import android.os.RemoteException;
27import android.os.ServiceManager;
28import android.os.ServiceSpecificException;
Dmitry Dementyev29b9de52018-01-31 16:09:32 -080029import android.security.KeyStore;
30import android.security.keystore.AndroidKeyStoreProvider;
Max Bires13f98ce2018-11-02 10:50:40 -070031import android.security.keystore.KeyPermanentlyInvalidatedException;
Robert Berry81ee34b2018-01-23 11:59:59 +000032
33import com.android.internal.widget.ILockSettings;
34
Dmitry Dementyev29b9de52018-01-31 16:09:32 -080035import java.security.Key;
36import java.security.UnrecoverableKeyException;
Aseem Kumarc1742e52018-03-12 14:34:58 -070037import java.security.cert.CertPath;
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -080038import java.security.cert.CertificateException;
Robert Berry93d002c2018-03-21 21:57:07 +000039import java.security.cert.X509Certificate;
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -080040import java.util.ArrayList;
Robert Berry81ee34b2018-01-23 11:59:59 +000041import java.util.List;
42import java.util.Map;
43
44/**
Robert Berry93f38d72018-03-29 17:19:38 +010045 * Backs up cryptographic keys to remote secure hardware, encrypted with the user's lock screen.
Robert Berry81ee34b2018-01-23 11:59:59 +000046 *
Bo Zhu41d2dd22018-03-30 12:20:06 -070047 * <p>A system app with the {@code android.permission.RECOVER_KEYSTORE} permission may generate or
Robert Berry93f38d72018-03-29 17:19:38 +010048 * import recoverable keys using this class. To generate a key, the app must call
49 * {@link #generateKey(String)} with the desired alias for the key. This returns an AndroidKeyStore
50 * reference to a 256-bit {@link javax.crypto.SecretKey}, which can be used for AES/GCM/NoPadding.
51 * In order to get the same key again at a later time, the app can call {@link #getKey(String)} with
52 * the same alias. If a key is generated in this way the key's raw material is never directly
53 * exposed to the calling app. The system app may also import key material using
54 * {@link #importKey(String, byte[])}. The app may only generate and import keys for its own
55 * {@code uid}.
Robert Berry81ee34b2018-01-23 11:59:59 +000056 *
Robert Berry93f38d72018-03-29 17:19:38 +010057 * <p>The same system app must also register a Recovery Agent to manage syncing recoverable keys to
58 * remote secure hardware. The Recovery Agent is a service that registers itself with the controller
59 * as follows:
Robert Berry81ee34b2018-01-23 11:59:59 +000060 *
Robert Berry93f38d72018-03-29 17:19:38 +010061 * <ul>
62 * <li>Invokes {@link #initRecoveryService(String, byte[], byte[])}
63 * <ul>
64 * <li>The first argument is the alias of the root certificate used to verify trusted
65 * hardware modules. Each trusted hardware module must have a public key signed with this
66 * root of trust. Roots of trust must be shipped with the framework. The app can list all
67 * valid roots of trust by calling {@link #getRootCertificates()}.
68 * <li>The second argument is the UTF-8 bytes of the XML listing file. It lists the X509
69 * certificates containing the public keys of all available remote trusted hardware modules.
70 * Each of the X509 certificates can be validated against the chosen root of trust.
71 * <li>The third argument is the UTF-8 bytes of the XML signing file. The file contains a
72 * signature of the XML listing file. The signature can be validated against the chosen root
73 * of trust.
74 * </ul>
75 * <p>This will cause the controller to choose a random public key from the list. From then
76 * on the controller will attempt to sync the key chain with the trusted hardware module to whom
77 * that key belongs.
78 * <li>Invokes {@link #setServerParams(byte[])} with a byte string that identifies the device
79 * to a remote server. This server may act as the front-end to the trusted hardware modules. It
80 * is up to the Recovery Agent to decide how best to identify devices, but this could be, e.g.,
81 * based on the <a href="https://developers.google.com/instance-id/">Instance ID</a> of the
82 * system app.
83 * <li>Invokes {@link #setRecoverySecretTypes(int[])} with a list of types of secret used to
84 * secure the recoverable key chain. For now only
85 * {@link KeyChainProtectionParams#TYPE_LOCKSCREEN} is supported.
86 * <li>Invokes {@link #setSnapshotCreatedPendingIntent(PendingIntent)} with a
87 * {@link PendingIntent} that is to be invoked whenever a new snapshot is created. Although the
88 * controller can create snapshots without the Recovery Agent registering this intent, it is a
89 * good idea to register the intent so that the Recovery Agent is able to sync this snapshot to
90 * the trusted hardware module as soon as it is available.
91 * </ul>
92 *
93 * <p>The trusted hardware module's public key MUST be generated on secure hardware with protections
94 * equivalent to those described in the
95 * <a href="https://developer.android.com/preview/features/security/ckv-whitepaper.html">Google
96 * Cloud Key Vault Service whitepaper</a>. The trusted hardware module itself must protect the key
97 * chain from brute-forcing using the methods also described in the whitepaper: i.e., it should
98 * limit the number of allowed attempts to enter the lock screen. If the number of attempts is
99 * exceeded the key material must no longer be recoverable.
100 *
101 * <p>A recoverable key chain snapshot is considered pending if any of the following conditions
102 * are met:
103 *
104 * <ul>
105 * <li>The system app mutates the key chain. i.e., generates, imports, or removes a key.
106 * <li>The user changes their lock screen.
107 * </ul>
108 *
109 * <p>Whenever the user unlocks their device, if a snapshot is pending, the Recovery Controller
110 * generates a new snapshot. It follows these steps to do so:
111 *
112 * <ul>
113 * <li>Generates a 256-bit AES key using {@link java.security.SecureRandom}. This is the
114 * Recovery Key.
115 * <li>Wraps the key material of all keys in the recoverable key chain with the Recovery Key.
116 * <li>Encrypts the Recovery Key with both the public key of the trusted hardware module and a
117 * symmetric key derived from the user's lock screen.
118 * </ul>
119 *
120 * <p>The controller then writes this snapshot to disk, and uses the {@link PendingIntent} that was
121 * set by the Recovery Agent during initialization to inform it that a new snapshot is available.
122 * The snapshot only contains keys for that Recovery Agent's {@code uid} - i.e., keys the agent's
123 * app itself generated. If multiple Recovery Agents exist on the device, each will be notified of
124 * their new snapshots, and each snapshots' keys will be only those belonging to the same
125 * {@code uid}.
126 *
127 * <p>The Recovery Agent retrieves its most recent snapshot by calling
128 * {@link #getKeyChainSnapshot()}. It syncs the snapshot to the remote server. The snapshot contains
129 * the public key used for encryption, which the server uses to forward the encrypted recovery key
130 * to the correct trusted hardware module. The snapshot also contains the server params, which are
131 * used to identify this device to the server.
132 *
133 * <p>The client uses the server params to identify a device whose key chain it wishes to restore.
134 * This may be on a different device to the device that originally synced the key chain. The client
135 * sends the server params identifying the previous device to the server. The server returns the
136 * X509 certificate identifying the trusted hardware module in which the encrypted Recovery Key is
137 * stored. It also returns some vault parameters identifying that particular Recovery Key to the
138 * trusted hardware module. And it also returns a vault challenge, which is used as part of the
139 * vault opening protocol to ensure the recovery claim is fresh. See the whitepaper for more
140 * details.
141 *
142 * <p>The key chain is recovered via a {@link RecoverySession}. A Recovery Agent creates one by
143 * invoking {@link #createRecoverySession()}. It then invokes
144 * {@link RecoverySession#start(String, CertPath, byte[], byte[], List)} with these arguments:
145 *
146 * <ul>
147 * <li>The alias of the root of trust used to verify the trusted hardware module.
148 * <li>The X509 certificate of the trusted hardware module.
149 * <li>The vault parameters used to identify the Recovery Key to the trusted hardware module.
150 * <li>The vault challenge, as issued by the trusted hardware module.
151 * <li>A list of secrets, corresponding to the secrets used to protect the key chain. At the
152 * moment this is a single {@link KeyChainProtectionParams} containing the lock screen of the
153 * device whose key chain is to be recovered.
154 * </ul>
155 *
156 * <p>This method returns a byte array containing the Recovery Claim, which can be issued to the
157 * remote trusted hardware module. It is encrypted with the trusted hardware module's public key
158 * (which has itself been certified with the root of trust). It also contains an ephemeral symmetric
159 * key generated for this recovery session, which the remote trusted hardware module uses to encrypt
160 * its responses. This is the Session Key.
161 *
162 * <p>If the lock screen provided is correct, the remote trusted hardware module decrypts one of the
163 * layers of lock-screen encryption from the Recovery Key. It then returns this key, encrypted with
164 * the Session Key to the Recovery Agent. As the Recovery Agent does not know the Session Key, it
165 * must then invoke {@link RecoverySession#recoverKeyChainSnapshot(byte[], List)} with the encrypted
166 * Recovery Key and the list of wrapped application keys. The controller then decrypts the layer of
167 * encryption provided by the Session Key, and uses the lock screen to decrypt the final layer of
168 * encryption. It then uses the Recovery Key to decrypt all of the wrapped application keys, and
169 * imports them into its own KeyStore. The Recovery Agent's app may then access these keys by
170 * calling {@link #getKey(String)}. Only this app's {@code uid} may access the keys that have been
171 * recovered.
Robert Berry81ee34b2018-01-23 11:59:59 +0000172 *
173 * @hide
174 */
Dmitry Dementyevf8ae5de2018-01-08 18:08:23 -0800175@SystemApi
Robert Berry81ee34b2018-01-23 11:59:59 +0000176public class RecoveryController {
177 private static final String TAG = "RecoveryController";
178
179 /** Key has been successfully synced. */
180 public static final int RECOVERY_STATUS_SYNCED = 0;
181 /** Waiting for recovery agent to sync the key. */
182 public static final int RECOVERY_STATUS_SYNC_IN_PROGRESS = 1;
Robert Berry81ee34b2018-01-23 11:59:59 +0000183 /** Key cannot be synced. */
184 public static final int RECOVERY_STATUS_PERMANENT_FAILURE = 3;
185
186 /**
187 * Failed because no snapshot is yet pending to be synced for the user.
188 *
189 * @hide
190 */
191 public static final int ERROR_NO_SNAPSHOT_PENDING = 21;
192
193 /**
194 * Failed due to an error internal to the recovery service. This is unexpected and indicates
195 * either a problem with the logic in the service, or a problem with a dependency of the
196 * service (such as AndroidKeyStore).
197 *
198 * @hide
199 */
200 public static final int ERROR_SERVICE_INTERNAL_ERROR = 22;
201
202 /**
203 * Failed because the user does not have a lock screen set.
204 *
205 * @hide
206 */
207 public static final int ERROR_INSECURE_USER = 23;
208
209 /**
210 * Error thrown when attempting to use a recovery session that has since been closed.
211 *
212 * @hide
213 */
214 public static final int ERROR_SESSION_EXPIRED = 24;
215
216 /**
Bo Zhu7f414d92018-02-28 09:28:19 -0800217 * Failed because the format of the provided certificate is incorrect, e.g., cannot be decoded
218 * properly or misses necessary fields.
219 *
220 * <p>Note that this is different from {@link #ERROR_INVALID_CERTIFICATE}, which implies the
221 * certificate has a correct format but cannot be validated.
Robert Berry81ee34b2018-01-23 11:59:59 +0000222 *
223 * @hide
224 */
225 public static final int ERROR_BAD_CERTIFICATE_FORMAT = 25;
226
227 /**
228 * Error thrown if decryption failed. This might be because the tag is wrong, the key is wrong,
229 * the data has become corrupted, the data has been tampered with, etc.
230 *
231 * @hide
232 */
233 public static final int ERROR_DECRYPTION_FAILED = 26;
234
Bo Zhu2c8e5382018-02-26 15:54:25 -0800235 /**
236 * Error thrown if the format of a given key is invalid. This might be because the key has a
237 * wrong length, invalid content, etc.
238 *
239 * @hide
240 */
241 public static final int ERROR_INVALID_KEY_FORMAT = 27;
242
Bo Zhu7f414d92018-02-28 09:28:19 -0800243 /**
244 * Failed because the provided certificate cannot be validated, e.g., is expired or has invalid
245 * signatures.
246 *
247 * <p>Note that this is different from {@link #ERROR_BAD_CERTIFICATE_FORMAT}, which denotes
248 * incorrect certificate formats, e.g., due to wrong encoding or structure.
249 *
250 * @hide
251 */
252 public static final int ERROR_INVALID_CERTIFICATE = 28;
Robert Berry81ee34b2018-01-23 11:59:59 +0000253
Aseem Kumar23174b72018-04-03 11:35:51 -0700254
255 /**
256 * Failed because the provided certificate contained serial version which is lower that the
257 * version device is already initialized with. It is not possible to downgrade serial version of
258 * the provided certificate.
259 *
260 * @hide
261 */
262 public static final int ERROR_DOWNGRADE_CERTIFICATE = 29;
263
Robert Berry81ee34b2018-01-23 11:59:59 +0000264 private final ILockSettings mBinder;
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800265 private final KeyStore mKeyStore;
Robert Berry81ee34b2018-01-23 11:59:59 +0000266
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800267 private RecoveryController(ILockSettings binder, KeyStore keystore) {
Robert Berry81ee34b2018-01-23 11:59:59 +0000268 mBinder = binder;
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800269 mKeyStore = keystore;
Robert Berry81ee34b2018-01-23 11:59:59 +0000270 }
271
272 /**
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -0800273 * Internal method used by {@code RecoverySession}.
274 *
275 * @hide
276 */
277 ILockSettings getBinder() {
278 return mBinder;
279 }
280
281 /**
Robert Berry81ee34b2018-01-23 11:59:59 +0000282 * Gets a new instance of the class.
283 */
Aseem Kumarc1742e52018-03-12 14:34:58 -0700284 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
Dmitry Dementyev16d9db52018-03-26 11:31:46 -0700285 @NonNull public static RecoveryController getInstance(@NonNull Context context) {
Robert Berry81ee34b2018-01-23 11:59:59 +0000286 ILockSettings lockSettings =
287 ILockSettings.Stub.asInterface(ServiceManager.getService("lock_settings"));
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800288 return new RecoveryController(lockSettings, KeyStore.getInstance());
Robert Berry81ee34b2018-01-23 11:59:59 +0000289 }
290
291 /**
Bo Zhub95c90c2018-04-10 13:58:25 -0700292 * Checks whether the recoverable key store is currently available.
293 *
294 * <p>If it returns true, the device must currently be using a screen lock that is supported for
295 * use with the recoverable key store, i.e. AOSP PIN, pattern or password.
296 */
297 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
298 public static boolean isRecoverableKeyStoreEnabled(@NonNull Context context) {
299 KeyguardManager keyguardManager = context.getSystemService(KeyguardManager.class);
300 return keyguardManager != null && keyguardManager.isDeviceSecure();
301 }
302
303 /**
Bo Zhu7f414d92018-02-28 09:28:19 -0800304 * Initializes the recovery service for the calling application. The detailed steps should be:
305 * <ol>
306 * <li>Parse {@code signatureFile} to get relevant information.
307 * <li>Validate the signer's X509 certificate, contained in {@code signatureFile}, against
308 * the root certificate pre-installed in the OS and chosen by {@code
309 * rootCertificateAlias}.
310 * <li>Verify the public-key signature, contained in {@code signatureFile}, and verify it
311 * against the entire {@code certificateFile}.
312 * <li>Parse {@code certificateFile} to get relevant information.
313 * <li>Check the serial number, contained in {@code certificateFile}, and skip the following
314 * steps if the serial number is not larger than the one previously stored.
315 * <li>Randomly choose a X509 certificate from the endpoint X509 certificates, contained in
316 * {@code certificateFile}, and validate it against the root certificate pre-installed
317 * in the OS and chosen by {@code rootCertificateAlias}.
318 * <li>Store the chosen X509 certificate and the serial in local database for later use.
319 * </ol>
320 *
321 * @param rootCertificateAlias the alias of a root certificate pre-installed in the OS
322 * @param certificateFile the binary content of the XML file containing a list of recovery
323 * service X509 certificates, and other metadata including the serial number
324 * @param signatureFile the binary content of the XML file containing the public-key signature
325 * of the entire certificate file, and a signer's X509 certificate
326 * @throws CertificateException if the given certificate files cannot be parsed or validated
327 * @throws InternalRecoveryServiceException if an unexpected error occurred in the recovery
328 * service.
329 */
330 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
331 public void initRecoveryService(
332 @NonNull String rootCertificateAlias, @NonNull byte[] certificateFile,
333 @NonNull byte[] signatureFile)
334 throws CertificateException, InternalRecoveryServiceException {
335 try {
336 mBinder.initRecoveryServiceWithSigFile(
337 rootCertificateAlias, certificateFile, signatureFile);
338 } catch (RemoteException e) {
339 throw e.rethrowFromSystemServer();
340 } catch (ServiceSpecificException e) {
341 if (e.errorCode == ERROR_BAD_CERTIFICATE_FORMAT
342 || e.errorCode == ERROR_INVALID_CERTIFICATE) {
Bo Zhu41d2dd22018-03-30 12:20:06 -0700343 throw new CertificateException("Invalid certificate for recovery service", e);
Robert Berry81ee34b2018-01-23 11:59:59 +0000344 }
Aseem Kumar23174b72018-04-03 11:35:51 -0700345 if (e.errorCode == ERROR_DOWNGRADE_CERTIFICATE) {
346 throw new CertificateException(
347 "Downgrading certificate serial version isn't supported.", e);
348 }
Robert Berry81ee34b2018-01-23 11:59:59 +0000349 throw wrapUnexpectedServiceSpecificException(e);
350 }
351 }
352
353 /**
Dmitry Dementyevb4fb9872018-01-26 11:49:34 -0800354 * Returns data necessary to store all recoverable keys. Key material is
355 * encrypted with user secret and recovery public key.
356 *
357 * @return Data necessary to recover keystore or {@code null} if snapshot is not available.
358 * @throws InternalRecoveryServiceException if an unexpected error occurred in the recovery
359 * service.
Dmitry Dementyevb4fb9872018-01-26 11:49:34 -0800360 */
361 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
362 public @Nullable KeyChainSnapshot getKeyChainSnapshot()
363 throws InternalRecoveryServiceException {
364 try {
365 return mBinder.getKeyChainSnapshot();
Robert Berry81ee34b2018-01-23 11:59:59 +0000366 } catch (RemoteException e) {
367 throw e.rethrowFromSystemServer();
368 } catch (ServiceSpecificException e) {
369 if (e.errorCode == ERROR_NO_SNAPSHOT_PENDING) {
370 return null;
371 }
372 throw wrapUnexpectedServiceSpecificException(e);
373 }
374 }
375
376 /**
377 * Sets a listener which notifies recovery agent that new recovery snapshot is available. {@link
Dmitry Dementyev1e6a9dc2018-03-21 13:52:00 -0700378 * #getKeyChainSnapshot} can be used to get the snapshot. Note that every recovery agent can
379 * have at most one registered listener at any time.
Robert Berry81ee34b2018-01-23 11:59:59 +0000380 *
381 * @param intent triggered when new snapshot is available. Unregisters listener if the value is
382 * {@code null}.
383 * @throws InternalRecoveryServiceException if an unexpected error occurred in the recovery
384 * service.
385 */
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -0800386 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
Robert Berry81ee34b2018-01-23 11:59:59 +0000387 public void setSnapshotCreatedPendingIntent(@Nullable PendingIntent intent)
388 throws InternalRecoveryServiceException {
389 try {
390 mBinder.setSnapshotCreatedPendingIntent(intent);
391 } catch (RemoteException e) {
392 throw e.rethrowFromSystemServer();
393 } catch (ServiceSpecificException e) {
394 throw wrapUnexpectedServiceSpecificException(e);
395 }
396 }
397
398 /**
Robert Berry81ee34b2018-01-23 11:59:59 +0000399 * Server parameters used to generate new recovery key blobs. This value will be included in
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -0800400 * {@code KeyChainSnapshot.getEncryptedRecoveryKeyBlob()}. The same value must be included
Aseem Kumarc1742e52018-03-12 14:34:58 -0700401 * in vaultParams {@link RecoverySession#start(CertPath, byte[], byte[], List)}.
Robert Berry81ee34b2018-01-23 11:59:59 +0000402 *
403 * @param serverParams included in recovery key blob.
Dmitry Dementyev1e6a9dc2018-03-21 13:52:00 -0700404 * @see #getKeyChainSnapshot
Robert Berry81ee34b2018-01-23 11:59:59 +0000405 * @throws InternalRecoveryServiceException if an unexpected error occurred in the recovery
406 * service.
407 */
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -0800408 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
Dmitry Dementyev1e6a9dc2018-03-21 13:52:00 -0700409 public void setServerParams(@NonNull byte[] serverParams)
410 throws InternalRecoveryServiceException {
Robert Berry81ee34b2018-01-23 11:59:59 +0000411 try {
412 mBinder.setServerParams(serverParams);
413 } catch (RemoteException e) {
414 throw e.rethrowFromSystemServer();
415 } catch (ServiceSpecificException e) {
416 throw wrapUnexpectedServiceSpecificException(e);
417 }
418 }
419
420 /**
Robert Berry56f06b42018-02-23 13:31:32 +0000421 * Returns a list of aliases of keys belonging to the application.
422 */
Aseem Kumarc1742e52018-03-12 14:34:58 -0700423 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
Dmitry Dementyev1e6a9dc2018-03-21 13:52:00 -0700424 public @NonNull List<String> getAliases() throws InternalRecoveryServiceException {
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -0800425 try {
Robert Berry56f06b42018-02-23 13:31:32 +0000426 Map<String, Integer> allStatuses = mBinder.getRecoveryStatus();
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -0800427 return new ArrayList<>(allStatuses.keySet());
428 } catch (RemoteException e) {
429 throw e.rethrowFromSystemServer();
430 } catch (ServiceSpecificException e) {
431 throw wrapUnexpectedServiceSpecificException(e);
432 }
433 }
434
435 /**
Robert Berrybbe02ae2018-02-20 19:47:43 +0000436 * Sets the recovery status for given key. It is used to notify the keystore that the key was
437 * successfully stored on the server or that there was an error. An application can check this
438 * value using {@link #getRecoveryStatus(String, String)}.
439 *
440 * @param alias The alias of the key whose status to set.
441 * @param status The status of the key. One of {@link #RECOVERY_STATUS_SYNCED},
442 * {@link #RECOVERY_STATUS_SYNC_IN_PROGRESS} or {@link #RECOVERY_STATUS_PERMANENT_FAILURE}.
443 * @throws InternalRecoveryServiceException if an unexpected error occurred in the recovery
444 * service.
445 */
446 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
Dmitry Dementyev1e6a9dc2018-03-21 13:52:00 -0700447 public void setRecoveryStatus(@NonNull String alias, int status)
Robert Berrybbe02ae2018-02-20 19:47:43 +0000448 throws InternalRecoveryServiceException {
Robert Berry81ee34b2018-01-23 11:59:59 +0000449 try {
Robert Berrybbe02ae2018-02-20 19:47:43 +0000450 mBinder.setRecoveryStatus(alias, status);
Robert Berry81ee34b2018-01-23 11:59:59 +0000451 } catch (RemoteException e) {
452 throw e.rethrowFromSystemServer();
453 } catch (ServiceSpecificException e) {
454 throw wrapUnexpectedServiceSpecificException(e);
455 }
456 }
457
458 /**
Robert Berry56f06b42018-02-23 13:31:32 +0000459 * Returns the recovery status for the key with the given {@code alias}.
Robert Berry81ee34b2018-01-23 11:59:59 +0000460 *
461 * <ul>
462 * <li>{@link #RECOVERY_STATUS_SYNCED}
463 * <li>{@link #RECOVERY_STATUS_SYNC_IN_PROGRESS}
Robert Berry81ee34b2018-01-23 11:59:59 +0000464 * <li>{@link #RECOVERY_STATUS_PERMANENT_FAILURE}
465 * </ul>
466 *
Robert Berry56f06b42018-02-23 13:31:32 +0000467 * @see #setRecoveryStatus(String, int)
Robert Berry81ee34b2018-01-23 11:59:59 +0000468 * @throws InternalRecoveryServiceException if an unexpected error occurred in the recovery
469 * service.
470 */
Aseem Kumarc1742e52018-03-12 14:34:58 -0700471 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
Dmitry Dementyev1e6a9dc2018-03-21 13:52:00 -0700472 public int getRecoveryStatus(@NonNull String alias) throws InternalRecoveryServiceException {
Robert Berry81ee34b2018-01-23 11:59:59 +0000473 try {
Robert Berry56f06b42018-02-23 13:31:32 +0000474 Map<String, Integer> allStatuses = mBinder.getRecoveryStatus();
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -0800475 Integer status = allStatuses.get(alias);
476 if (status == null) {
477 return RecoveryController.RECOVERY_STATUS_PERMANENT_FAILURE;
478 } else {
479 return status;
480 }
Robert Berry81ee34b2018-01-23 11:59:59 +0000481 } catch (RemoteException e) {
482 throw e.rethrowFromSystemServer();
483 } catch (ServiceSpecificException e) {
484 throw wrapUnexpectedServiceSpecificException(e);
485 }
486 }
487
488 /**
489 * Specifies a set of secret types used for end-to-end keystore encryption. Knowing all of them
490 * is necessary to recover data.
491 *
Aseem Kumar933dfc12018-03-22 22:09:34 -0700492 * @param secretTypes {@link KeyChainProtectionParams#TYPE_LOCKSCREEN}
Robert Berry81ee34b2018-01-23 11:59:59 +0000493 * @throws InternalRecoveryServiceException if an unexpected error occurred in the recovery
494 * service.
495 */
Aseem Kumarc1742e52018-03-12 14:34:58 -0700496 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
Robert Berry81ee34b2018-01-23 11:59:59 +0000497 public void setRecoverySecretTypes(
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -0800498 @NonNull @KeyChainProtectionParams.UserSecretType int[] secretTypes)
Robert Berry81ee34b2018-01-23 11:59:59 +0000499 throws InternalRecoveryServiceException {
500 try {
501 mBinder.setRecoverySecretTypes(secretTypes);
502 } catch (RemoteException e) {
503 throw e.rethrowFromSystemServer();
504 } catch (ServiceSpecificException e) {
505 throw wrapUnexpectedServiceSpecificException(e);
506 }
507 }
508
509 /**
510 * Defines a set of secret types used for end-to-end keystore encryption. Knowing all of them is
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -0800511 * necessary to generate KeyChainSnapshot.
Robert Berry81ee34b2018-01-23 11:59:59 +0000512 *
513 * @return list of recovery secret types
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -0800514 * @see KeyChainSnapshot
Robert Berry81ee34b2018-01-23 11:59:59 +0000515 * @throws InternalRecoveryServiceException if an unexpected error occurred in the recovery
516 * service.
517 */
Aseem Kumarc1742e52018-03-12 14:34:58 -0700518 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -0800519 public @NonNull @KeyChainProtectionParams.UserSecretType int[] getRecoverySecretTypes()
Robert Berry81ee34b2018-01-23 11:59:59 +0000520 throws InternalRecoveryServiceException {
521 try {
522 return mBinder.getRecoverySecretTypes();
523 } catch (RemoteException e) {
524 throw e.rethrowFromSystemServer();
525 } catch (ServiceSpecificException e) {
526 throw wrapUnexpectedServiceSpecificException(e);
527 }
528 }
529
530 /**
Robert Berrya3b99472018-02-23 15:59:02 +0000531 * Generates a recoverable key with the given {@code alias}.
532 *
533 * @throws InternalRecoveryServiceException if an unexpected error occurred in the recovery
534 * service.
535 * @throws LockScreenRequiredException if the user does not have a lock screen set. A lock
536 * screen is required to generate recoverable keys.
Bo Zhuc7048342019-01-03 14:04:58 -0800537 *
538 * @deprecated Use the method {@link #generateKey(String, byte[])} instead.
Robert Berrya3b99472018-02-23 15:59:02 +0000539 */
Bo Zhuc7048342019-01-03 14:04:58 -0800540 @Deprecated
Aseem Kumarc1742e52018-03-12 14:34:58 -0700541 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
Dmitry Dementyev0bbaf182018-03-23 17:36:58 -0700542 public @NonNull Key generateKey(@NonNull String alias) throws InternalRecoveryServiceException,
Robert Berrya3b99472018-02-23 15:59:02 +0000543 LockScreenRequiredException {
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800544 try {
Robert Berrya3b99472018-02-23 15:59:02 +0000545 String grantAlias = mBinder.generateKey(alias);
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800546 if (grantAlias == null) {
Robert Berrya3b99472018-02-23 15:59:02 +0000547 throw new InternalRecoveryServiceException("null grant alias");
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800548 }
Robert Berry4a5c87d2018-03-19 18:00:46 +0000549 return getKeyFromGrant(grantAlias);
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800550 } catch (RemoteException e) {
551 throw e.rethrowFromSystemServer();
Max Bires13f98ce2018-11-02 10:50:40 -0700552 } catch (KeyPermanentlyInvalidatedException | UnrecoverableKeyException e) {
Robert Berrya3b99472018-02-23 15:59:02 +0000553 throw new InternalRecoveryServiceException("Failed to get key from keystore", e);
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800554 } catch (ServiceSpecificException e) {
555 if (e.errorCode == ERROR_INSECURE_USER) {
556 throw new LockScreenRequiredException(e.getMessage());
557 }
558 throw wrapUnexpectedServiceSpecificException(e);
559 }
560 }
561
562 /**
Bo Zhuc7048342019-01-03 14:04:58 -0800563 * Generates a recoverable key with the given {@code alias} and {@code metadata}.
564 *
565 * <p>The metadata should contain any data that needs to be cryptographically bound to the
566 * generated key, but does not need to be encrypted by the key. For example, the metadata can
567 * be a byte string describing the algorithms and non-secret parameters to be used with the
568 * key. The supplied metadata can later be obtained via
569 * {@link WrappedApplicationKey#getMetadata()}.
570 *
571 * <p>During the key recovery process, the same metadata has to be supplied via
572 * {@link WrappedApplicationKey.Builder#setMetadata(byte[])}; otherwise, the recovery process
573 * will fail due to the checking of the cryptographic binding. This can help prevent
574 * potential attacks that try to swap key materials on the backup server and trick the
575 * application to use keys with different algorithms or parameters.
576 *
577 * @throws InternalRecoveryServiceException if an unexpected error occurred in the recovery
578 * service.
579 * @throws LockScreenRequiredException if the user does not have a lock screen set. A lock
580 * screen is required to generate recoverable keys.
581 */
582 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
583 public @NonNull Key generateKey(@NonNull String alias, @Nullable byte[] metadata)
584 throws InternalRecoveryServiceException, LockScreenRequiredException {
585 try {
586 String grantAlias = mBinder.generateKeyWithMetadata(alias, metadata);
587 if (grantAlias == null) {
588 throw new InternalRecoveryServiceException("null grant alias");
589 }
590 return getKeyFromGrant(grantAlias);
591 } catch (RemoteException e) {
592 throw e.rethrowFromSystemServer();
Max Bires13f98ce2018-11-02 10:50:40 -0700593 } catch (KeyPermanentlyInvalidatedException | UnrecoverableKeyException e) {
Bo Zhuc7048342019-01-03 14:04:58 -0800594 throw new InternalRecoveryServiceException("Failed to get key from keystore", e);
595 } catch (ServiceSpecificException e) {
596 if (e.errorCode == ERROR_INSECURE_USER) {
597 throw new LockScreenRequiredException(e.getMessage());
598 }
599 throw wrapUnexpectedServiceSpecificException(e);
600 }
601 }
602
603 /**
Bo Zhu2c8e5382018-02-26 15:54:25 -0800604 * Imports a 256-bit recoverable AES key with the given {@code alias} and the raw bytes {@code
605 * keyBytes}.
606 *
607 * @throws InternalRecoveryServiceException if an unexpected error occurred in the recovery
608 * service.
609 * @throws LockScreenRequiredException if the user does not have a lock screen set. A lock
610 * screen is required to generate recoverable keys.
611 *
Bo Zhuc7048342019-01-03 14:04:58 -0800612 * @deprecated Use the method {@link #importKey(String, byte[], byte[])} instead.
Bo Zhu2c8e5382018-02-26 15:54:25 -0800613 */
Bo Zhuc7048342019-01-03 14:04:58 -0800614 @Deprecated
Aseem Kumarc1742e52018-03-12 14:34:58 -0700615 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
Dmitry Dementyev0bbaf182018-03-23 17:36:58 -0700616 public @NonNull Key importKey(@NonNull String alias, @NonNull byte[] keyBytes)
Bo Zhu2c8e5382018-02-26 15:54:25 -0800617 throws InternalRecoveryServiceException, LockScreenRequiredException {
618 try {
619 String grantAlias = mBinder.importKey(alias, keyBytes);
620 if (grantAlias == null) {
621 throw new InternalRecoveryServiceException("Null grant alias");
622 }
Bo Zhuc5ab6942018-03-21 14:33:15 -0700623 return getKeyFromGrant(grantAlias);
Bo Zhu2c8e5382018-02-26 15:54:25 -0800624 } catch (RemoteException e) {
625 throw e.rethrowFromSystemServer();
Max Bires13f98ce2018-11-02 10:50:40 -0700626 } catch (KeyPermanentlyInvalidatedException | UnrecoverableKeyException e) {
Bo Zhu2c8e5382018-02-26 15:54:25 -0800627 throw new InternalRecoveryServiceException("Failed to get key from keystore", e);
628 } catch (ServiceSpecificException e) {
629 if (e.errorCode == ERROR_INSECURE_USER) {
630 throw new LockScreenRequiredException(e.getMessage());
631 }
632 throw wrapUnexpectedServiceSpecificException(e);
633 }
634 }
635
636 /**
Bo Zhuc7048342019-01-03 14:04:58 -0800637 * Imports a recoverable 256-bit AES key with the given {@code alias}, the raw bytes {@code
638 * keyBytes}, and the {@code metadata}.
639 *
640 * <p>The metadata should contain any data that needs to be cryptographically bound to the
641 * imported key, but does not need to be encrypted by the key. For example, the metadata can
642 * be a byte string describing the algorithms and non-secret parameters to be used with the
643 * key. The supplied metadata can later be obtained via
644 * {@link WrappedApplicationKey#getMetadata()}.
645 *
646 * <p>During the key recovery process, the same metadata has to be supplied via
647 * {@link WrappedApplicationKey.Builder#setMetadata(byte[])}; otherwise, the recovery process
648 * will fail due to the checking of the cryptographic binding. This can help prevent
649 * potential attacks that try to swap key materials on the backup server and trick the
650 * application to use keys with different algorithms or parameters.
651 *
652 * @throws InternalRecoveryServiceException if an unexpected error occurred in the recovery
653 * service.
654 * @throws LockScreenRequiredException if the user does not have a lock screen set. A lock
655 * screen is required to generate recoverable keys.
656 */
657 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
658 public @NonNull Key importKey(@NonNull String alias, @NonNull byte[] keyBytes,
659 @Nullable byte[] metadata)
660 throws InternalRecoveryServiceException, LockScreenRequiredException {
661 try {
662 String grantAlias = mBinder.importKeyWithMetadata(alias, keyBytes, metadata);
663 if (grantAlias == null) {
664 throw new InternalRecoveryServiceException("Null grant alias");
665 }
666 return getKeyFromGrant(grantAlias);
667 } catch (RemoteException e) {
668 throw e.rethrowFromSystemServer();
Max Bires13f98ce2018-11-02 10:50:40 -0700669 } catch (KeyPermanentlyInvalidatedException | UnrecoverableKeyException e) {
Bo Zhuc7048342019-01-03 14:04:58 -0800670 throw new InternalRecoveryServiceException("Failed to get key from keystore", e);
671 } catch (ServiceSpecificException e) {
672 if (e.errorCode == ERROR_INSECURE_USER) {
673 throw new LockScreenRequiredException(e.getMessage());
674 }
675 throw wrapUnexpectedServiceSpecificException(e);
676 }
677 }
678
679 /**
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800680 * Gets a key called {@code alias} from the recoverable key store.
681 *
682 * @param alias The key alias.
683 * @return The key.
684 * @throws InternalRecoveryServiceException if an unexpected error occurred in the recovery
685 * service.
686 * @throws UnrecoverableKeyException if key is permanently invalidated or not found.
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800687 */
Aseem Kumarc1742e52018-03-12 14:34:58 -0700688 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800689 public @Nullable Key getKey(@NonNull String alias)
690 throws InternalRecoveryServiceException, UnrecoverableKeyException {
691 try {
692 String grantAlias = mBinder.getKey(alias);
Robert Berry72f57552018-03-23 08:08:02 +0000693 if (grantAlias == null || "".equals(grantAlias)) {
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800694 return null;
695 }
Robert Berry4a5c87d2018-03-19 18:00:46 +0000696 return getKeyFromGrant(grantAlias);
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800697 } catch (RemoteException e) {
698 throw e.rethrowFromSystemServer();
Max Bires13f98ce2018-11-02 10:50:40 -0700699 } catch (KeyPermanentlyInvalidatedException | UnrecoverableKeyException e) {
700 throw new UnrecoverableKeyException(e.getMessage());
Dmitry Dementyev29b9de52018-01-31 16:09:32 -0800701 } catch (ServiceSpecificException e) {
702 throw wrapUnexpectedServiceSpecificException(e);
703 }
704 }
705
706 /**
Robert Berry4a5c87d2018-03-19 18:00:46 +0000707 * Returns the key with the given {@code grantAlias}.
708 */
Max Bires13f98ce2018-11-02 10:50:40 -0700709 @NonNull Key getKeyFromGrant(@NonNull String grantAlias)
710 throws UnrecoverableKeyException, KeyPermanentlyInvalidatedException {
Robert Berry4a5c87d2018-03-19 18:00:46 +0000711 return AndroidKeyStoreProvider.loadAndroidKeyStoreKeyFromKeystore(
712 mKeyStore,
713 grantAlias,
714 KeyStore.UID_SELF);
715 }
716
717 /**
Robert Berry81ee34b2018-01-23 11:59:59 +0000718 * Removes a key called {@code alias} from the recoverable key store.
719 *
720 * @param alias The key alias.
721 * @throws InternalRecoveryServiceException if an unexpected error occurred in the recovery
722 * service.
723 */
Aseem Kumarc1742e52018-03-12 14:34:58 -0700724 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
Robert Berry81ee34b2018-01-23 11:59:59 +0000725 public void removeKey(@NonNull String alias) throws InternalRecoveryServiceException {
726 try {
727 mBinder.removeKey(alias);
728 } catch (RemoteException e) {
729 throw e.rethrowFromSystemServer();
730 } catch (ServiceSpecificException e) {
731 throw wrapUnexpectedServiceSpecificException(e);
732 }
733 }
734
Robert Berrye04e09a2018-02-22 15:24:05 +0000735 /**
736 * Returns a new {@link RecoverySession}.
737 *
738 * <p>A recovery session is required to restore keys from a remote store.
739 */
Aseem Kumarc1742e52018-03-12 14:34:58 -0700740 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
Dmitry Dementyev1e6a9dc2018-03-21 13:52:00 -0700741 public @NonNull RecoverySession createRecoverySession() {
Robert Berrye04e09a2018-02-22 15:24:05 +0000742 return RecoverySession.newInstance(this);
743 }
744
Robert Berry93d002c2018-03-21 21:57:07 +0000745 @RequiresPermission(android.Manifest.permission.RECOVER_KEYSTORE)
Dmitry Dementyev0bbaf182018-03-23 17:36:58 -0700746 public @NonNull Map<String, X509Certificate> getRootCertificates() {
Robert Berry93d002c2018-03-21 21:57:07 +0000747 return TrustedRootCertificates.getRootCertificates();
748 }
749
Dmitry Dementyev0916e7c2018-01-23 13:02:08 -0800750 InternalRecoveryServiceException wrapUnexpectedServiceSpecificException(
Robert Berry81ee34b2018-01-23 11:59:59 +0000751 ServiceSpecificException e) {
752 if (e.errorCode == ERROR_SERVICE_INTERNAL_ERROR) {
753 return new InternalRecoveryServiceException(e.getMessage());
754 }
755
756 // Should never happen. If it does, it's a bug, and we need to update how the method that
757 // called this throws its exceptions.
758 return new InternalRecoveryServiceException("Unexpected error code for method: "
759 + e.errorCode, e);
760 }
761}