Update your security provider to protect against SSL exploits

Android relies on a security Provider to provide secure network communications. However, from time to time, vulnerabilities are found in the default security provider. To protect against these vulnerabilities, Google Play services provides a way to automatically update a device's security provider to protect against known exploits. By calling Google Play services methods, you can help ensure that your app is running on a device that has the latest updates to protect against known exploits.

For example, a vulnerability was discovered in OpenSSL (CVE-2014-0224) that can leave apps open to an on-path attack that decrypts secure traffic without either side knowing. Google Play services version 5.0 offers a fix, but apps must check that this fix is installed. By using the Google Play services methods, you can help ensure that your app is running on a device that's secured against that attack.

Caution: Updating a device's security Provider does not update android.net.SSLCertificateSocketFactory , which remains vulnerable. Rather than using this deprecated class, we encourage app developers to use high-level methods for interacting with cryptography, such as HttpsURLConnection .

Patch the security provider using ProviderInstaller

To update a device's security provider, use the ProviderInstaller class. You can verify that the security provider is up to date (and update it, if necessary) by calling that class's installIfNeeded() (or installIfNeededAsync()) method. This section describes these options at a high level. The sections that follow provide more detailed steps and examples.

When you call installIfNeeded(), the ProviderInstaller does the following:

  • If the device's Provider is successfully updated (or is already up to date), the method returns without throwing an exception.
  • If the device's Google Play services library is out of date, the method throws GooglePlayServicesRepairableException. The app can then catch this exception and show the user an appropriate dialog box to update Google Play services.
  • If a non-recoverable error occurs, the method throws GooglePlayServicesNotAvailableException to indicate that it is unable to update the Provider. The app can then catch the exception and choose an appropriate course of action, such as displaying the standard fix-it flow diagram.

The installIfNeededAsync() method behaves similarly, except that instead of throwing exceptions, it calls the appropriate callback method to indicate success or failure.

If the security provider is already up to date, installIfNeeded() takes a negligible amount of time. If the method needs to install a new Provider, this can take anywhere from 30-50 ms (on more recent devices) to 350 ms (on older devices). To avoid affecting user experience:

  • Call installIfNeeded() from background networking threads immediately when the threads are loaded, instead of waiting for the thread to try to use the network. (There's no harm in calling the method multiple times, since it returns immediately if the security provider doesn't need updating.)
  • Call the asynchronous version of the method, installIfNeededAsync(), if user experience can be affected by the thread blocking—for example, if the call is from an activity in the UI thread. (If you do this, you need to wait for the operation to finish before you attempt any secure communications. The ProviderInstaller calls your listener's onProviderInstalled() method to signal success.)

Warning: If the ProviderInstaller is unable to install an updated Provider, your device's security provider might be vulnerable to known exploits. Your app should behave as if all HTTP communication is unencrypted.

Once the Provider is updated, all calls to security APIs (including SSL APIs) are routed through it. (However, this doesn't apply to android.net.SSLCertificateSocketFactory, which remains vulnerable to exploits like CVE-2014-0224.)

Patch synchronously

The simplest way to patch the security provider is to call the synchronous method installIfNeeded(). This is appropriate if user experience won't be affected by the thread blocking while it waits for the operation to finish.

For example, here's an implementation of a worker that updates the security provider. Since a worker runs in the background, it's okay if the thread blocks while waiting for the security provider to be updated. The worker calls installIfNeeded() to update the security provider. If the method returns normally, the worker knows the security provider is up to date. If the method throws an exception, the worker can take appropriate action (such as prompting the user to update Google Play services).

Kotlin

/**
 * Sample patch Worker using {@link ProviderInstaller}.
 */
classPatchWorker(appContext:Context,workerParams:WorkerParameters):Worker(appContext,workerParams){
overridefundoWork():Result{
try{
ProviderInstaller.installIfNeeded(context)
}catch(e:GooglePlayServicesRepairableException){
// Indicates that Google Play services is out of date, disabled, etc.
// Prompt the user to install/update/enable Google Play services.
GoogleApiAvailability.getInstance()
.showErrorNotification(context,e.connectionStatusCode)
// Notify the WorkManager that a soft error occurred.
returnResult.failure()
}catch(e:GooglePlayServicesNotAvailableException){
// Indicates a non-recoverable error; the ProviderInstaller can't
// install an up-to-date Provider.
// Notify the WorkManager that a hard error occurred.
returnResult.failure()
}
// If this is reached, you know that the provider was already up to date
// or was successfully updated.
returnResult.success()
}
}

Java

/**
 * Sample patch Worker using {@link ProviderInstaller}.
 */
publicclass PatchWorkerextendsWorker{
...
@Override
publicResultdoWork(){
try{
ProviderInstaller.installIfNeeded(getContext());
}catch(GooglePlayServicesRepairableExceptione){
// Indicates that Google Play services is out of date, disabled, etc.
// Prompt the user to install/update/enable Google Play services.
GoogleApiAvailability.getInstance()
.showErrorNotification(context,e.connectionStatusCode)
// Notify the WorkManager that a soft error occurred.
returnResult.failure();
}catch(GooglePlayServicesNotAvailableExceptione){
// Indicates a non-recoverable error; the ProviderInstaller can't
// install an up-to-date Provider.
// Notify the WorkManager that a hard error occurred.
returnResult.failure();
}
// If this is reached, you know that the provider was already up to date
// or was successfully updated.
returnResult.success();
}
}

Patch asynchronously

Updating the security provider can take as much as 350 ms (on older devices). If you're doing the update on a thread that directly affects user experience, such as the UI thread, you don't want to make a synchronous call to update the provider, since that can result in the app or device freezing until the operation finishes. Instead, use the asynchronous method installIfNeededAsync(). That method indicates its success or failure by calling callbacks.

For example, here's some code that updates the security provider in an activity in the UI thread. The activity calls installIfNeededAsync() to update the provider, and designates itself as the listener to receive success or failure notifications. If the security provider is up to date or is successfully updated, the activity's onProviderInstalled() method is called, and the activity knows communication is secure. If the provider can't be updated, the activity's onProviderInstallFailed() method is called, and the activity can take appropriate action (such as prompting the user to update Google Play services).

Kotlin

privateconstvalERROR_DIALOG_REQUEST_CODE=1
/**
 * Sample activity using {@link ProviderInstaller}.
 */
classMainActivity:Activity(),ProviderInstaller.ProviderInstallListener{
privatevarretryProviderInstall:Boolean=false
// Update the security provider when the activity is created.
overridefunonCreate(savedInstanceState:Bundle?){
super.onCreate(savedInstanceState)
ProviderInstaller.installIfNeededAsync(this,this)
}
/**
 * This method is only called if the provider is successfully updated
 * (or is already up to date).
 */
overridefunonProviderInstalled(){
// Provider is up to date; app can make secure network calls.
}
/**
 * This method is called if updating fails. The error code indicates
 * whether the error is recoverable.
 */
overridefunonProviderInstallFailed(errorCode:Int,recoveryIntent:Intent){
GoogleApiAvailability.getInstance().apply{
if(isUserResolvableError(errorCode)){
// Recoverable error. Show a dialog prompting the user to
// install/update/enable Google Play services.
showErrorDialogFragment(this@MainActivity,errorCode,ERROR_DIALOG_REQUEST_CODE){
// The user chose not to take the recovery action.
onProviderInstallerNotAvailable()
}
}else{
onProviderInstallerNotAvailable()
}
}
}
overridefunonActivityResult(requestCode:Int,resultCode:Int,
data:Intent){
super.onActivityResult(requestCode,resultCode,data)
if(requestCode==ERROR_DIALOG_REQUEST_CODE){
// Adding a fragment via GoogleApiAvailability.showErrorDialogFragment
// before the instance state is restored throws an error. So instead,
// set a flag here, which causes the fragment to delay until
// onPostResume.
retryProviderInstall=true
}
}
/**
 * On resume, check whether a flag indicates that the provider needs to be
 * reinstalled.
 */
overridefunonPostResume(){
super.onPostResume()
if(retryProviderInstall){
// It's safe to retry installation.
ProviderInstaller.installIfNeededAsync(this,this)
}
retryProviderInstall=false
}
privatefunonProviderInstallerNotAvailable(){
// This is reached if the provider can't be updated for some reason.
// App should consider all HTTP communication to be vulnerable and take
// appropriate action.
}
}

Java

/**
 * Sample activity using {@link ProviderInstaller}.
 */
publicclass MainActivityextendsActivity
implementsProviderInstaller.ProviderInstallListener{
privatestaticfinalintERROR_DIALOG_REQUEST_CODE=1;
privatebooleanretryProviderInstall;
// Update the security provider when the activity is created.
@Override
protectedvoidonCreate(BundlesavedInstanceState){
super.onCreate(savedInstanceState);
ProviderInstaller.installIfNeededAsync(this,this);
}
/**
 * This method is only called if the provider is successfully updated
 * (or is already up to date).
 */
@Override
protectedvoidonProviderInstalled(){
// Provider is up to date; app can make secure network calls.
}
/**
 * This method is called if updating fails. The error code indicates
 * whether the error is recoverable.
 */
@Override
protectedvoidonProviderInstallFailed(interrorCode,IntentrecoveryIntent){
GoogleApiAvailabilityavailability=GoogleApiAvailability.getInstance();
if(availability.isUserRecoverableError(errorCode)){
// Recoverable error. Show a dialog prompting the user to
// install/update/enable Google Play services.
availability.showErrorDialogFragment(
this,
errorCode,
ERROR_DIALOG_REQUEST_CODE,
newDialogInterface.OnCancelListener(){
@Override
publicvoidonCancel(DialogInterfacedialog){
// The user chose not to take the recovery action.
onProviderInstallerNotAvailable();
}
});
}else{
// Google Play services isn't available.
onProviderInstallerNotAvailable();
}
}
@Override
protectedvoidonActivityResult(intrequestCode,intresultCode,
Intentdata){
super.onActivityResult(requestCode,resultCode,data);
if(requestCode==ERROR_DIALOG_REQUEST_CODE){
// Adding a fragment via GoogleApiAvailability.showErrorDialogFragment
// before the instance state is restored throws an error. So instead,
// set a flag here, which causes the fragment to delay until
// onPostResume.
retryProviderInstall=true;
}
}
/**
 * On resume, check whether a flag indicates that the provider needs to be
 * reinstalled.
 */
@Override
protectedvoidonPostResume(){
super.onPostResume();
if(retryProviderInstall){
// It's safe to retry installation.
ProviderInstaller.installIfNeededAsync(this,this);
}
retryProviderInstall=false;
}
privatevoidonProviderInstallerNotAvailable(){
// This is reached if the provider can't be updated for some reason.
// App should consider all HTTP communication to be vulnerable and take
// appropriate action.
}
}

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2024年09月24日 UTC.