1 /*
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 package android.app.slice;
17 
18 import static android.app.slice.Slice.SUBTYPE_COLOR;
19 
20 import android.annotation.NonNull;
21 import android.app.PendingIntent;
22 import android.content.ComponentName;
23 import android.content.ContentProvider;
24 import android.content.ContentResolver;
25 import android.content.ContentValues;
26 import android.content.Context;
27 import android.content.Intent;
28 import android.content.IntentFilter;
29 import android.content.pm.PackageManager;
30 import android.content.pm.PackageManager.NameNotFoundException;
31 import android.content.pm.ProviderInfo;
32 import android.database.ContentObserver;
33 import android.database.Cursor;
34 import android.graphics.drawable.Icon;
35 import android.net.Uri;
36 import android.os.Binder;
37 import android.os.Bundle;
38 import android.os.CancellationSignal;
39 import android.os.Handler;
40 import android.os.Process;
41 import android.os.StrictMode;
42 import android.os.StrictMode.ThreadPolicy;
43 import android.util.ArraySet;
44 import android.util.Log;
45 import android.util.TypedValue;
46 import android.view.ContextThemeWrapper;
47 
48 import java.util.ArrayList;
49 import java.util.Arrays;
50 import java.util.Collection;
51 import java.util.Collections;
52 import java.util.List;
53 import java.util.Set;
54 
55 /**
56  * A SliceProvider allows an app to provide content to be displayed in system spaces. This content
57  * is templated and can contain actions, and the behavior of how it is surfaced is specific to the
58  * system surface.
59  * <p>
60  * Slices are not currently live content. They are bound once and shown to the user. If the content
61  * changes due to a callback from user interaction, then
62  * {@link ContentResolver#notifyChange(Uri, ContentObserver)} should be used to notify the system.
63  * </p>
64  * <p>
65  * The provider needs to be declared in the manifest to provide the authority for the app. The
66  * authority for most slices is expected to match the package of the application.
67  * </p>
68  *
69  * <pre class="prettyprint">
70  * {@literal
71  * <provider
72  *     android:name="com.example.mypkg.MySliceProvider"
73  *     android:authorities="com.example.mypkg" />}
74  * </pre>
75  * <p>
76  * Slices can be identified by a Uri or by an Intent. To link an Intent with a slice, the provider
77  * must have an {@link IntentFilter} matching the slice intent. When a slice is being requested via
78  * an intent, {@link #onMapIntentToUri(Intent)} can be called and is expected to return an
79  * appropriate Uri representing the slice.
80  *
81  * <pre class="prettyprint">
82  * {@literal
83  * <provider
84  *     android:name="com.example.mypkg.MySliceProvider"
85  *     android:authorities="com.example.mypkg">
86  *     <intent-filter>
87  *         <action android:name="com.example.mypkg.intent.action.MY_SLICE_INTENT" />
88  *         <category android:name="android.app.slice.category.SLICE" />
89  *     </intent-filter>
90  * </provider>}
91  * </pre>
92  *
93  * @see Slice
94  */
95 public abstract class SliceProvider extends ContentProvider {
96     /**
97      * This is the Android platform's MIME type for a URI
98      * containing a slice implemented through {@link SliceProvider}.
99      */
100     public static final String SLICE_TYPE = "vnd.android.slice";
101 
102     private static final String TAG = "SliceProvider";
103     /**
104      * @hide
105      */
106     public static final String EXTRA_BIND_URI = "slice_uri";
107     /**
108      * @hide
109      */
110     public static final String EXTRA_SUPPORTED_SPECS = "supported_specs";
111     /**
112      * @hide
113      */
114     public static final String METHOD_SLICE = "bind_slice";
115     /**
116      * @hide
117      */
118     public static final String METHOD_MAP_INTENT = "map_slice";
119     /**
120      * @hide
121      */
122     public static final String METHOD_MAP_ONLY_INTENT = "map_only";
123     /**
124      * @hide
125      */
126     public static final String METHOD_PIN = "pin";
127     /**
128      * @hide
129      */
130     public static final String METHOD_UNPIN = "unpin";
131     /**
132      * @hide
133      */
134     public static final String METHOD_GET_DESCENDANTS = "get_descendants";
135     /**
136      * @hide
137      */
138     public static final String METHOD_GET_PERMISSIONS = "get_permissions";
139     /**
140      * @hide
141      */
142     public static final String EXTRA_INTENT = "slice_intent";
143     /**
144      * @hide
145      */
146     public static final String EXTRA_SLICE = "slice";
147     /**
148      * @hide
149      */
150     public static final String EXTRA_SLICE_DESCENDANTS = "slice_descendants";
151     /**
152      * @hide
153      */
154     public static final String EXTRA_PKG = "pkg";
155     /**
156      * @hide
157      */
158     public static final String EXTRA_RESULT = "result";
159 
160     private static final boolean DEBUG = false;
161 
162     private static final long SLICE_BIND_ANR = 2000;
163     private final String[] mAutoGrantPermissions;
164 
165     private String mCallback;
166     private SliceManager mSliceManager;
167 
168     /**
169      * A version of constructing a SliceProvider that allows autogranting slice permissions
170      * to apps that hold specific platform permissions.
171      * <p>
172      * When an app tries to bind a slice from this provider that it does not have access to,
173      * This provider will check if the caller holds permissions to any of the autoGrantPermissions
174      * specified, if they do they will be granted persisted uri access to all slices of this
175      * provider.
176      *
177      * @param autoGrantPermissions List of permissions that holders are auto-granted access
178      *                             to slices.
179      */
SliceProvider(@onNull String... autoGrantPermissions)180     public SliceProvider(@NonNull String... autoGrantPermissions) {
181         mAutoGrantPermissions = autoGrantPermissions;
182     }
183 
SliceProvider()184     public SliceProvider() {
185         mAutoGrantPermissions = new String[0];
186     }
187 
188     @Override
attachInfo(Context context, ProviderInfo info)189     public void attachInfo(Context context, ProviderInfo info) {
190         super.attachInfo(context, info);
191         mSliceManager = context.getSystemService(SliceManager.class);
192     }
193 
194     /**
195      * Implemented to create a slice.
196      * <p>
197      * onBindSlice should return as quickly as possible so that the UI tied
198      * to this slice can be responsive. No network or other IO will be allowed
199      * during onBindSlice. Any loading that needs to be done should happen
200      * in the background with a call to {@link ContentResolver#notifyChange(Uri, ContentObserver)}
201      * when the app is ready to provide the complete data in onBindSlice.
202      * <p>
203      * The slice returned should have a spec that is compatible with one of
204      * the supported specs.
205      *
206      * @param sliceUri Uri to bind.
207      * @param supportedSpecs List of supported specs.
208      * @see Slice
209      * @see Slice#HINT_PARTIAL
210      */
onBindSlice(Uri sliceUri, Set<SliceSpec> supportedSpecs)211     public Slice onBindSlice(Uri sliceUri, Set<SliceSpec> supportedSpecs) {
212         return onBindSlice(sliceUri, new ArrayList<>(supportedSpecs));
213     }
214 
215     /**
216      * @deprecated TO BE REMOVED
217      * @removed
218      */
219     @Deprecated
onBindSlice(Uri sliceUri, List<SliceSpec> supportedSpecs)220     public Slice onBindSlice(Uri sliceUri, List<SliceSpec> supportedSpecs) {
221         return null;
222     }
223 
224     /**
225      * Called to inform an app that a slice has been pinned.
226      * <p>
227      * Pinning is a way that slice hosts use to notify apps of which slices
228      * they care about updates for. When a slice is pinned the content is
229      * expected to be relatively fresh and kept up to date.
230      * <p>
231      * Being pinned does not provide any escalated privileges for the slice
232      * provider. So apps should do things such as turn on syncing or schedule
233      * a job in response to a onSlicePinned.
234      * <p>
235      * Pinned state is not persisted through a reboot, and apps can expect a
236      * new call to onSlicePinned for any slices that should remain pinned
237      * after a reboot occurs.
238      *
239      * @param sliceUri The uri of the slice being unpinned.
240      * @see #onSliceUnpinned(Uri)
241      */
onSlicePinned(Uri sliceUri)242     public void onSlicePinned(Uri sliceUri) {
243     }
244 
245     /**
246      * Called to inform an app that a slices is no longer pinned.
247      * <p>
248      * This means that no other apps on the device care about updates to this
249      * slice anymore and therefore it is not important to be updated. Any syncs
250      * or jobs related to this slice should be cancelled.
251      * @see #onSlicePinned(Uri)
252      */
onSliceUnpinned(Uri sliceUri)253     public void onSliceUnpinned(Uri sliceUri) {
254     }
255 
256     /**
257      * Obtains a list of slices that are descendants of the specified Uri.
258      * <p>
259      * Implementing this is optional for a SliceProvider, but does provide a good
260      * discovery mechanism for finding slice Uris.
261      *
262      * @param uri The uri to look for descendants under.
263      * @return All slices within the space.
264      * @see SliceManager#getSliceDescendants(Uri)
265      */
onGetSliceDescendants(@onNull Uri uri)266     public @NonNull Collection<Uri> onGetSliceDescendants(@NonNull Uri uri) {
267         return Collections.emptyList();
268     }
269 
270     /**
271      * This method must be overridden if an {@link IntentFilter} is specified on the SliceProvider.
272      * In that case, this method can be called and is expected to return a non-null Uri representing
273      * a slice. Otherwise this will throw {@link UnsupportedOperationException}.
274      *
275      * Any intent filter added to a slice provider should also contain
276      * {@link SliceManager#CATEGORY_SLICE}, because otherwise it will not be detected by
277      * {@link SliceManager#mapIntentToUri(Intent)}.
278      *
279      * @return Uri representing the slice associated with the provided intent.
280      * @see Slice
281      * @see SliceManager#mapIntentToUri(Intent)
282      */
onMapIntentToUri(Intent intent)283     public @NonNull Uri onMapIntentToUri(Intent intent) {
284         throw new UnsupportedOperationException(
285                 "This provider has not implemented intent to uri mapping");
286     }
287 
288     /**
289      * Called when an app requests a slice it does not have write permission
290      * to the uri for.
291      * <p>
292      * The return value will be the action on a slice that prompts the user that
293      * the calling app wants to show slices from this app. The default implementation
294      * launches a dialog that allows the user to grant access to this slice. Apps
295      * that do not want to allow this user grant, can override this and instead
296      * launch their own dialog with different behavior.
297      *
298      * @param sliceUri the Uri of the slice attempting to be bound.
299      * @see #getCallingPackage()
300      */
onCreatePermissionRequest(Uri sliceUri)301     public @NonNull PendingIntent onCreatePermissionRequest(Uri sliceUri) {
302         return createPermissionPendingIntent(getContext(), sliceUri, getCallingPackage());
303     }
304 
305     @Override
update(Uri uri, ContentValues values, String selection, String[] selectionArgs)306     public final int update(Uri uri, ContentValues values, String selection,
307             String[] selectionArgs) {
308         if (DEBUG) Log.d(TAG, "update " + uri);
309         return 0;
310     }
311 
312     @Override
delete(Uri uri, String selection, String[] selectionArgs)313     public final int delete(Uri uri, String selection, String[] selectionArgs) {
314         if (DEBUG) Log.d(TAG, "delete " + uri);
315         return 0;
316     }
317 
318     @Override
query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder)319     public final Cursor query(Uri uri, String[] projection, String selection,
320             String[] selectionArgs, String sortOrder) {
321         if (DEBUG) Log.d(TAG, "query " + uri);
322         return null;
323     }
324 
325     @Override
query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder, CancellationSignal cancellationSignal)326     public final Cursor query(Uri uri, String[] projection, String selection, String[]
327             selectionArgs, String sortOrder, CancellationSignal cancellationSignal) {
328         if (DEBUG) Log.d(TAG, "query " + uri);
329         return null;
330     }
331 
332     @Override
query(Uri uri, String[] projection, Bundle queryArgs, CancellationSignal cancellationSignal)333     public final Cursor query(Uri uri, String[] projection, Bundle queryArgs,
334             CancellationSignal cancellationSignal) {
335         if (DEBUG) Log.d(TAG, "query " + uri);
336         return null;
337     }
338 
339     @Override
insert(Uri uri, ContentValues values)340     public final Uri insert(Uri uri, ContentValues values) {
341         if (DEBUG) Log.d(TAG, "insert " + uri);
342         return null;
343     }
344 
345     @Override
getType(Uri uri)346     public final String getType(Uri uri) {
347         if (DEBUG) Log.d(TAG, "getType " + uri);
348         return SLICE_TYPE;
349     }
350 
351     @Override
call(String method, String arg, Bundle extras)352     public Bundle call(String method, String arg, Bundle extras) {
353         if (method.equals(METHOD_SLICE)) {
354             Uri uri = getUriWithoutUserId(validateIncomingUriOrNull(
355                     extras.getParcelable(EXTRA_BIND_URI, android.net.Uri.class)));
356             List<SliceSpec> supportedSpecs = extras.getParcelableArrayList(EXTRA_SUPPORTED_SPECS, android.app.slice.SliceSpec.class);
357 
358             String callingPackage = getCallingPackage();
359             int callingUid = Binder.getCallingUid();
360             int callingPid = Binder.getCallingPid();
361 
362             Slice s = handleBindSlice(uri, supportedSpecs, callingPackage, callingUid, callingPid);
363             Bundle b = new Bundle();
364             b.putParcelable(EXTRA_SLICE, s);
365             return b;
366         } else if (method.equals(METHOD_MAP_INTENT)) {
367             Intent intent = extras.getParcelable(EXTRA_INTENT, android.content.Intent.class);
368             if (intent == null) return null;
369             Uri uri = validateIncomingUriOrNull(onMapIntentToUri(intent));
370             List<SliceSpec> supportedSpecs = extras.getParcelableArrayList(EXTRA_SUPPORTED_SPECS, android.app.slice.SliceSpec.class);
371             Bundle b = new Bundle();
372             if (uri != null) {
373                 Slice s = handleBindSlice(uri, supportedSpecs, getCallingPackage(),
374                         Binder.getCallingUid(), Binder.getCallingPid());
375                 b.putParcelable(EXTRA_SLICE, s);
376             } else {
377                 b.putParcelable(EXTRA_SLICE, null);
378             }
379             return b;
380         } else if (method.equals(METHOD_MAP_ONLY_INTENT)) {
381             Intent intent = extras.getParcelable(EXTRA_INTENT, android.content.Intent.class);
382             if (intent == null) return null;
383             Uri uri = validateIncomingUriOrNull(onMapIntentToUri(intent));
384             Bundle b = new Bundle();
385             b.putParcelable(EXTRA_SLICE, uri);
386             return b;
387         } else if (method.equals(METHOD_PIN)) {
388             Uri uri = getUriWithoutUserId(validateIncomingUriOrNull(
389                     extras.getParcelable(EXTRA_BIND_URI, android.net.Uri.class)));
390             if (Binder.getCallingUid() != Process.SYSTEM_UID) {
391                 throw new SecurityException("Only the system can pin/unpin slices");
392             }
393             handlePinSlice(uri);
394         } else if (method.equals(METHOD_UNPIN)) {
395             Uri uri = getUriWithoutUserId(validateIncomingUriOrNull(
396                     extras.getParcelable(EXTRA_BIND_URI, android.net.Uri.class)));
397             if (Binder.getCallingUid() != Process.SYSTEM_UID) {
398                 throw new SecurityException("Only the system can pin/unpin slices");
399             }
400             handleUnpinSlice(uri);
401         } else if (method.equals(METHOD_GET_DESCENDANTS)) {
402             Uri uri = getUriWithoutUserId(
403                     validateIncomingUriOrNull(extras.getParcelable(EXTRA_BIND_URI, android.net.Uri.class)));
404             Bundle b = new Bundle();
405             b.putParcelableArrayList(EXTRA_SLICE_DESCENDANTS,
406                     new ArrayList<>(handleGetDescendants(uri)));
407             return b;
408         } else if (method.equals(METHOD_GET_PERMISSIONS)) {
409             if (Binder.getCallingUid() != Process.SYSTEM_UID) {
410                 throw new SecurityException("Only the system can get permissions");
411             }
412             Bundle b = new Bundle();
413             b.putStringArray(EXTRA_RESULT, mAutoGrantPermissions);
414             return b;
415         }
416         return super.call(method, arg, extras);
417     }
418 
validateIncomingUriOrNull(Uri uri)419     private Uri validateIncomingUriOrNull(Uri uri) {
420         return uri == null ? null : validateIncomingUri(uri);
421     }
422 
handleGetDescendants(Uri uri)423     private Collection<Uri> handleGetDescendants(Uri uri) {
424         mCallback = "onGetSliceDescendants";
425         return onGetSliceDescendants(uri);
426     }
427 
handlePinSlice(Uri sliceUri)428     private void handlePinSlice(Uri sliceUri) {
429         mCallback = "onSlicePinned";
430         Handler.getMain().postDelayed(mAnr, SLICE_BIND_ANR);
431         try {
432             onSlicePinned(sliceUri);
433         } finally {
434             Handler.getMain().removeCallbacks(mAnr);
435         }
436     }
437 
handleUnpinSlice(Uri sliceUri)438     private void handleUnpinSlice(Uri sliceUri) {
439         mCallback = "onSliceUnpinned";
440         Handler.getMain().postDelayed(mAnr, SLICE_BIND_ANR);
441         try {
442             onSliceUnpinned(sliceUri);
443         } finally {
444             Handler.getMain().removeCallbacks(mAnr);
445         }
446     }
447 
handleBindSlice(Uri sliceUri, List<SliceSpec> supportedSpecs, String callingPkg, int callingUid, int callingPid)448     private Slice handleBindSlice(Uri sliceUri, List<SliceSpec> supportedSpecs,
449             String callingPkg, int callingUid, int callingPid) {
450         // This can be removed once Slice#bindSlice is removed and everyone is using
451         // SliceManager#bindSlice.
452         String pkg = callingPkg != null ? callingPkg
453                 : getContext().getPackageManager().getNameForUid(callingUid);
454         try {
455             mSliceManager.enforceSlicePermission(sliceUri, callingPid, callingUid,
456                     mAutoGrantPermissions);
457         } catch (SecurityException e) {
458             return createPermissionSlice(getContext(), sliceUri, pkg);
459         }
460         mCallback = "onBindSlice";
461         Handler.getMain().postDelayed(mAnr, SLICE_BIND_ANR);
462         try {
463             return onBindSliceStrict(sliceUri, supportedSpecs);
464         } finally {
465             Handler.getMain().removeCallbacks(mAnr);
466         }
467     }
468 
469     /**
470      * @hide
471      */
createPermissionSlice(Context context, Uri sliceUri, String callingPackage)472     public Slice createPermissionSlice(Context context, Uri sliceUri,
473             String callingPackage) {
474         PendingIntent action;
475         mCallback = "onCreatePermissionRequest";
476         Handler.getMain().postDelayed(mAnr, SLICE_BIND_ANR);
477         try {
478             action = onCreatePermissionRequest(sliceUri);
479         } finally {
480             Handler.getMain().removeCallbacks(mAnr);
481         }
482         Slice.Builder parent = new Slice.Builder(sliceUri);
483         Slice.Builder childAction = new Slice.Builder(parent)
484                 .addIcon(Icon.createWithResource(context,
485                         com.android.internal.R.drawable.ic_permission), null,
486                         Collections.emptyList())
487                 .addHints(Arrays.asList(Slice.HINT_TITLE, Slice.HINT_SHORTCUT))
488                 .addAction(action, new Slice.Builder(parent).build(), null);
489 
490         TypedValue tv = new TypedValue();
491         new ContextThemeWrapper(context, android.R.style.Theme_DeviceDefault_Light)
492                 .getTheme().resolveAttribute(android.R.attr.colorAccent, tv, true);
493         int deviceDefaultAccent = tv.data;
494 
495         parent.addSubSlice(new Slice.Builder(sliceUri.buildUpon().appendPath("permission").build())
496                 .addIcon(Icon.createWithResource(context,
497                         com.android.internal.R.drawable.ic_arrow_forward), null,
498                         Collections.emptyList())
499                 .addText(getPermissionString(context, callingPackage), null,
500                         Collections.emptyList())
501                 .addInt(deviceDefaultAccent, SUBTYPE_COLOR,
502                         Collections.emptyList())
503                 .addSubSlice(childAction.build(), null)
504                 .build(), null);
505         return parent.addHints(Arrays.asList(Slice.HINT_PERMISSION_REQUEST)).build();
506     }
507 
508     /**
509      * @hide
510      */
createPermissionPendingIntent(Context context, Uri sliceUri, String callingPackage)511     public static PendingIntent createPermissionPendingIntent(Context context, Uri sliceUri,
512             String callingPackage) {
513         return PendingIntent.getActivity(context, 0,
514                 createPermissionIntent(context, sliceUri, callingPackage),
515                 PendingIntent.FLAG_IMMUTABLE);
516     }
517 
518     /**
519      * @hide
520      */
createPermissionIntent(Context context, Uri sliceUri, String callingPackage)521     public static Intent createPermissionIntent(Context context, Uri sliceUri,
522             String callingPackage) {
523         Intent intent = new Intent(SliceManager.ACTION_REQUEST_SLICE_PERMISSION);
524         intent.setComponent(ComponentName.unflattenFromString(context.getResources().getString(
525                 com.android.internal.R.string.config_slicePermissionComponent)));
526         intent.putExtra(EXTRA_BIND_URI, sliceUri);
527         intent.putExtra(EXTRA_PKG, callingPackage);
528         // Unique pending intent.
529         intent.setData(sliceUri.buildUpon().appendQueryParameter("package", callingPackage)
530                 .build());
531         return intent;
532     }
533 
534     /**
535      * @hide
536      */
getPermissionString(Context context, String callingPackage)537     public static CharSequence getPermissionString(Context context, String callingPackage) {
538         PackageManager pm = context.getPackageManager();
539         try {
540             return context.getString(
541                     com.android.internal.R.string.slices_permission_request,
542                     pm.getApplicationInfo(callingPackage, 0).loadLabel(pm),
543                     context.getApplicationInfo().loadLabel(pm));
544         } catch (NameNotFoundException e) {
545             // This shouldn't be possible since the caller is verified.
546             throw new RuntimeException("Unknown calling app", e);
547         }
548     }
549 
onBindSliceStrict(Uri sliceUri, List<SliceSpec> supportedSpecs)550     private Slice onBindSliceStrict(Uri sliceUri, List<SliceSpec> supportedSpecs) {
551         ThreadPolicy oldPolicy = StrictMode.getThreadPolicy();
552         try {
553             StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
554                     .detectAll()
555                     .penaltyDeath()
556                     .build());
557             return onBindSlice(sliceUri, new ArraySet<>(supportedSpecs));
558         } finally {
559             StrictMode.setThreadPolicy(oldPolicy);
560         }
561     }
562 
563     private final Runnable mAnr = () -> {
564         Process.sendSignal(Process.myPid(), Process.SIGNAL_QUIT);
565         Log.wtf(TAG, "Timed out while handling slice callback " + mCallback);
566     };
567 }
568