diff options
author | Gary Mai <garymai@google.com> | 2018-09-05 15:17:41 -0700 |
---|---|---|
committer | Rohit Yengisetty <rngy@google.com> | 2018-11-05 15:34:11 -0800 |
commit | c99325960fd343a47a65f77935feaf434c1ad9b6 (patch) | |
tree | 09bd928e01a42caa52a3fd6f512b5c50f3c896e3 | |
parent | 1b3303cd452f6a01119b016abc66cb1af19fbc25 (diff) | |
download | packages_apps_Contacts-c99325960fd343a47a65f77935feaf434c1ad9b6.tar.gz packages_apps_Contacts-c99325960fd343a47a65f77935feaf434c1ad9b6.tar.bz2 packages_apps_Contacts-c99325960fd343a47a65f77935feaf434c1ad9b6.zip |
Patch URI vulnerability in contact photo editing
Don't allow reading of "file://" URIs that don't point to "/storage" during the
photo saving flow.
This is to prevent malicious apps from asking us to read our own private
files which we copy into a temporary "content://" URI that we give to a
cropping app (with permission to read).
Fixing here patches both PhotoSelectionHandler.java and
AttachPhotoActivity.java.
Tested:
Manual with the fake gallery app. Confirmed that selecting an "image"
with a URI of our own shared_pref file fails without reading it.
ContactPhotoUtilsTest
Bug: 113597344
Change-Id: Iabb4f8139cedb7d7b865d69a4b95a4997f64c71d
(cherry picked from commit ccfd94b965c1e9c2e0b239c12137c239c602070d)
-rw-r--r-- | src/com/android/contacts/util/ContactPhotoUtils.java | 21 | ||||
-rw-r--r-- | tests/src/com/android/contacts/util/ContactPhotoUtilsTest.java | 49 |
2 files changed, 67 insertions, 3 deletions
diff --git a/src/com/android/contacts/util/ContactPhotoUtils.java b/src/com/android/contacts/util/ContactPhotoUtils.java index 943f5ddd9..d0e06587d 100644 --- a/src/com/android/contacts/util/ContactPhotoUtils.java +++ b/src/com/android/contacts/util/ContactPhotoUtils.java @@ -18,6 +18,7 @@ package com.android.contacts.util; import android.content.ClipData; +import android.content.ContentResolver; import android.content.Context; import android.content.Intent; import android.graphics.Bitmap; @@ -26,11 +27,9 @@ import android.net.Uri; import android.provider.MediaStore; import android.support.v4.content.FileProvider; import android.util.Log; - import com.android.contacts.R; import com.google.common.io.Closeables; - import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileNotFoundException; @@ -148,7 +147,7 @@ public class ContactPhotoUtils { */ public static boolean savePhotoFromUriToUri(Context context, Uri inputUri, Uri outputUri, boolean deleteAfterSave) { - if (inputUri == null || outputUri == null) { + if (inputUri == null || outputUri == null || isFilePathAndNotStorage(inputUri)) { return false; } try (FileOutputStream outputStream = context.getContentResolver() @@ -175,4 +174,20 @@ public class ContactPhotoUtils { } return true; } + + /** + * Returns {@code true} if the {@code inputUri} is a FILE scheme and it does not point to + * the storage directory. + */ + private static boolean isFilePathAndNotStorage(Uri inputUri) { + if (ContentResolver.SCHEME_FILE.equals(inputUri.getScheme())) { + try { + File file = new File(inputUri.getPath()).getCanonicalFile(); + return !file.getCanonicalPath().startsWith("/storage/"); + } catch (IOException e) { + return false; + } + } + return false; + } } diff --git a/tests/src/com/android/contacts/util/ContactPhotoUtilsTest.java b/tests/src/com/android/contacts/util/ContactPhotoUtilsTest.java new file mode 100644 index 000000000..d17b98c2d --- /dev/null +++ b/tests/src/com/android/contacts/util/ContactPhotoUtilsTest.java @@ -0,0 +1,49 @@ +package com.android.contacts.util; + +import android.net.Uri; +import android.test.AndroidTestCase; +import android.test.suitebuilder.annotation.SmallTest; + +/** + * Test cases for {@link ContactPhotoUtils}. + * + * adb shell am instrument -w -e class com.android.contacts.util.ContactPhotoUtilsTest \ + * com.android.contacts.tests/android.test.InstrumentationTestRunner + */ +@SmallTest +public class ContactPhotoUtilsTest extends AndroidTestCase { + + private Uri tempUri; + + @Override + protected void setUp() throws Exception { + tempUri = ContactPhotoUtils.generateTempImageUri(getContext()); + } + + protected void tearDown() throws Exception { + getContext().getContentResolver().delete(tempUri, null, null); + } + + public void testFileUriDataPathFails() { + String filePath = + "file:///data/data/com.android.contacts/shared_prefs/com.android.contacts.xml"; + + assertFalse( + ContactPhotoUtils.savePhotoFromUriToUri(getContext(), Uri.parse(filePath), tempUri, false)); + } + + public void testFileUriCanonicalDataPathFails() { + String filePath = + "file:///storage/../data/data/com.android.contacts/shared_prefs/com.android.contacts.xml"; + + assertFalse( + ContactPhotoUtils.savePhotoFromUriToUri(getContext(), Uri.parse(filePath), tempUri, false)); + } + + public void testContentUriInternalPasses() { + Uri internal = ContactPhotoUtils.generateTempImageUri(getContext()); + + assertTrue( + ContactPhotoUtils.savePhotoFromUriToUri(getContext(), internal, tempUri, true)); + } +} |