2023-08-08 05:30:19 -04:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Ioana Alexandru <aioana@google.com>
|
|
|
|
Date: Thu, 27 Apr 2023 14:55:28 +0000
|
|
|
|
Subject: [PATCH] Verify URI permissions for notification shortcutIcon.
|
|
|
|
|
|
|
|
Bug: 277593270
|
|
|
|
Test: atest NotificationManagerServiceTest
|
|
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:47e661cbf37e1dedf676f482ac07ffc433c92d0b)
|
|
|
|
Merged-In: I1efaa1301bca36895ad4322a919d7421156a60df
|
|
|
|
Change-Id: I1efaa1301bca36895ad4322a919d7421156a60df
|
|
|
|
---
|
2023-08-08 07:01:42 -04:00
|
|
|
core/java/android/app/Notification.java | 20 +++++++++++++++++++
|
2023-08-08 05:30:19 -04:00
|
|
|
.../NotificationManagerServiceTest.java | 7 ++++++-
|
2023-08-08 07:01:42 -04:00
|
|
|
2 files changed, 26 insertions(+), 1 deletion(-)
|
2023-08-08 05:30:19 -04:00
|
|
|
|
|
|
|
diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java
|
2023-08-08 07:01:42 -04:00
|
|
|
index 3e75c52bf893..8f0b36cf2a87 100644
|
2023-08-08 05:30:19 -04:00
|
|
|
--- a/core/java/android/app/Notification.java
|
|
|
|
+++ b/core/java/android/app/Notification.java
|
2023-08-08 07:01:42 -04:00
|
|
|
@@ -18,6 +18,7 @@ package android.app;
|
|
|
|
|
|
|
|
import static android.annotation.Dimension.DP;
|
|
|
|
import static android.graphics.drawable.Icon.TYPE_BITMAP;
|
|
|
|
+import static android.graphics.drawable.Icon.TYPE_URI;
|
|
|
|
|
|
|
|
import static com.android.internal.util.ContrastColorUtil.satisfiesTextContrast;
|
|
|
|
|
|
|
|
@@ -2434,6 +2435,14 @@ public class Notification implements Parcelable
|
2023-08-08 05:30:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ private static void visitIconUri(@NonNull Consumer<Uri> visitor, @Nullable Icon icon) {
|
|
|
|
+ if (icon == null) return;
|
|
|
|
+ final int iconType = icon.getType();
|
|
|
|
+ if (iconType == TYPE_URI /*|| iconType == TYPE_URI_ADAPTIVE_BITMAP*/) {
|
|
|
|
+ visitor.accept(icon.getUri());
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Note all {@link Uri} that are referenced internally, with the expectation
|
|
|
|
* that Uri permission grants will need to be issued to ensure the recipient
|
2023-08-08 07:01:42 -04:00
|
|
|
@@ -2449,7 +2458,18 @@ public class Notification implements Parcelable
|
2023-08-08 05:30:19 -04:00
|
|
|
if (bigContentView != null) bigContentView.visitUris(visitor);
|
|
|
|
if (headsUpContentView != null) headsUpContentView.visitUris(visitor);
|
|
|
|
|
|
|
|
+ visitIconUri(visitor, mSmallIcon);
|
|
|
|
+ visitIconUri(visitor, mLargeIcon);
|
|
|
|
+
|
|
|
|
+ if (actions != null) {
|
|
|
|
+ for (Action action : actions) {
|
|
|
|
+ visitIconUri(visitor, action.getIcon());
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
if (extras != null) {
|
|
|
|
+ visitIconUri(visitor, extras.getParcelable(EXTRA_LARGE_ICON_BIG));
|
|
|
|
+
|
|
|
|
visitor.accept(extras.getParcelable(EXTRA_AUDIO_CONTENTS_URI));
|
|
|
|
if (extras.containsKey(EXTRA_BACKGROUND_IMAGE_URI)) {
|
|
|
|
visitor.accept(Uri.parse(extras.getString(EXTRA_BACKGROUND_IMAGE_URI)));
|
|
|
|
diff --git a/services/tests/uiservicestests/src/com/android/server/notification/NotificationManagerServiceTest.java b/services/tests/uiservicestests/src/com/android/server/notification/NotificationManagerServiceTest.java
|
|
|
|
index 6c1620751866..a7a6f7a59ac3 100755
|
|
|
|
--- a/services/tests/uiservicestests/src/com/android/server/notification/NotificationManagerServiceTest.java
|
|
|
|
+++ b/services/tests/uiservicestests/src/com/android/server/notification/NotificationManagerServiceTest.java
|
|
|
|
@@ -3414,6 +3414,8 @@ public class NotificationManagerServiceTest extends UiServiceTestCase {
|
|
|
|
public void testVisitUris() throws Exception {
|
|
|
|
final Uri audioContents = Uri.parse("content://com.example/audio");
|
|
|
|
final Uri backgroundImage = Uri.parse("content://com.example/background");
|
|
|
|
+ final Icon smallIcon = Icon.createWithContentUri("content://media/small/icon");
|
|
|
|
+ final Icon largeIcon = Icon.createWithContentUri("content://media/large/icon");
|
|
|
|
|
|
|
|
Bundle extras = new Bundle();
|
|
|
|
extras.putParcelable(Notification.EXTRA_AUDIO_CONTENTS_URI, audioContents);
|
|
|
|
@@ -3421,7 +3423,8 @@ public class NotificationManagerServiceTest extends UiServiceTestCase {
|
|
|
|
|
|
|
|
Notification n = new Notification.Builder(mContext, "a")
|
|
|
|
.setContentTitle("notification with uris")
|
|
|
|
- .setSmallIcon(android.R.drawable.sym_def_app_icon)
|
|
|
|
+ .setSmallIcon(smallIcon)
|
|
|
|
+ .setLargeIcon(largeIcon)
|
|
|
|
.addExtras(extras)
|
|
|
|
.build();
|
|
|
|
|
|
|
|
@@ -3429,6 +3432,8 @@ public class NotificationManagerServiceTest extends UiServiceTestCase {
|
|
|
|
n.visitUris(visitor);
|
|
|
|
verify(visitor, times(1)).accept(eq(audioContents));
|
|
|
|
verify(visitor, times(1)).accept(eq(backgroundImage));
|
|
|
|
+ verify(visitor, times(1)).accept(eq(smallIcon.getUri()));
|
|
|
|
+ verify(visitor, times(1)).accept(eq(largeIcon.getUri()));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|