blob: 270e3879a71f2bcda90c886841c27d151a2332e3 [file] [log] [blame]
Svet Ganovadc1cf42015-06-15 16:36:24 -07001/*
2 * Copyright (C) 2015 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.content.pm;
18
Todd Kennedy82b08422017-09-28 13:32:05 -070019import android.annotation.IntDef;
20import android.annotation.NonNull;
21import android.annotation.Nullable;
Ricky Waicf134eb2018-10-10 09:26:32 +010022import android.annotation.UserIdInt;
Makoto Onuki2d5b4652016-03-11 16:09:54 -080023import android.content.ComponentName;
Todd Kennedy01ad0c72016-11-11 15:33:12 -080024import android.content.Intent;
Todd Kennedy18211fd2017-06-06 09:15:46 -070025import android.content.pm.PackageManager.ApplicationInfoFlags;
26import android.content.pm.PackageManager.ComponentInfoFlags;
Todd Kennedy18211fd2017-06-06 09:15:46 -070027import android.content.pm.PackageManager.PackageInfoFlags;
28import android.content.pm.PackageManager.ResolveInfoFlags;
Chad Brubaker06068612017-04-06 09:43:47 -070029import android.os.Bundle;
Suprabh Shukla19b41f32018-03-26 22:35:13 -070030import android.os.PersistableBundle;
Eugene Suslaabdefba2018-11-09 18:06:43 -080031import android.util.ArraySet;
Makoto Onukic29f62c2016-06-07 12:19:46 -070032import android.util.SparseArray;
Todd Kennedy39bfee52016-02-24 10:28:21 -080033
Svet Ganovd873ae62018-06-25 16:39:23 -070034import com.android.internal.util.function.TriFunction;
35
Jeff Sharkey5790af02018-08-13 17:42:54 -060036import java.io.IOException;
Todd Kennedy82b08422017-09-28 13:32:05 -070037import java.lang.annotation.Retention;
38import java.lang.annotation.RetentionPolicy;
Fyodor Kupolovcb6fd802015-11-05 14:27:06 -080039import java.util.List;
Svet Ganovd873ae62018-06-25 16:39:23 -070040import java.util.function.BiFunction;
Eugene Suslaabdefba2018-11-09 18:06:43 -080041import java.util.function.Consumer;
Svet Ganovadc1cf42015-06-15 16:36:24 -070042
43/**
44 * Package manager local system service interface.
45 *
46 * @hide Only for use within the system server.
47 */
48public abstract class PackageManagerInternal {
Todd Kennedy82b08422017-09-28 13:32:05 -070049 public static final int PACKAGE_SYSTEM = 0;
50 public static final int PACKAGE_SETUP_WIZARD = 1;
51 public static final int PACKAGE_INSTALLER = 2;
52 public static final int PACKAGE_VERIFIER = 3;
53 public static final int PACKAGE_BROWSER = 4;
Makoto Onuki700feef2018-02-15 10:59:41 -080054 public static final int PACKAGE_SYSTEM_TEXT_CLASSIFIER = 5;
Philip P. Moltmann8943ad62018-07-25 12:12:30 -070055 public static final int PACKAGE_PERMISSION_CONTROLLER = 6;
Varun Shah5f303652018-11-16 18:11:19 -080056 public static final int PACKAGE_WELLBEING = 7;
Jeff Sharkey15707b32018-12-10 12:08:41 -070057 public static final int PACKAGE_DOCUMENTER = 8;
Stanislav Zholnin596437f2018-12-28 15:34:23 +000058 public static final int PACKAGE_CONFIGURATOR = 9;
Joe Onorato5a15b552018-12-18 10:40:04 -080059 public static final int PACKAGE_INCIDENT_REPORT_APPROVER = 10;
George Hodulikcd7695d2019-01-29 18:17:05 -080060 public static final int PACKAGE_APP_PREDICTOR = 11;
Todd Kennedy82b08422017-09-28 13:32:05 -070061 @IntDef(value = {
62 PACKAGE_SYSTEM,
63 PACKAGE_SETUP_WIZARD,
64 PACKAGE_INSTALLER,
65 PACKAGE_VERIFIER,
66 PACKAGE_BROWSER,
Makoto Onuki700feef2018-02-15 10:59:41 -080067 PACKAGE_SYSTEM_TEXT_CLASSIFIER,
Philip P. Moltmann8943ad62018-07-25 12:12:30 -070068 PACKAGE_PERMISSION_CONTROLLER,
Varun Shah5f303652018-11-16 18:11:19 -080069 PACKAGE_WELLBEING,
Jeff Sharkey15707b32018-12-10 12:08:41 -070070 PACKAGE_DOCUMENTER,
Stanislav Zholnin596437f2018-12-28 15:34:23 +000071 PACKAGE_CONFIGURATOR,
Joe Onorato5a15b552018-12-18 10:40:04 -080072 PACKAGE_INCIDENT_REPORT_APPROVER,
George Hodulikcd7695d2019-01-29 18:17:05 -080073 PACKAGE_APP_PREDICTOR,
Todd Kennedy82b08422017-09-28 13:32:05 -070074 })
75 @Retention(RetentionPolicy.SOURCE)
76 public @interface KnownPackage {}
Svet Ganovadc1cf42015-06-15 16:36:24 -070077
Todd Kennedy42d61602017-12-12 14:44:19 -080078 /** Observer called whenever the list of packages changes */
79 public interface PackageListObserver {
80 /** A package was added to the system. */
81 void onPackageAdded(@NonNull String packageName);
82 /** A package was removed from the system. */
83 void onPackageRemoved(@NonNull String packageName);
84 }
85
Svet Ganovd873ae62018-06-25 16:39:23 -070086 /** Interface to override permission checks via composition */
87 public interface CheckPermissionDelegate {
88 /**
89 * Allows overriding check permission behavior.
90 *
91 * @param permName The permission to check.
92 * @param pkgName The package for which to check.
93 * @param userId The user for which to check.
94 * @param superImpl The super implementation.
95 * @return The check permission result.
96 */
97 int checkPermission(String permName, String pkgName, int userId,
98 TriFunction<String, String, Integer, Integer> superImpl);
99
100 /**
101 * Allows overriding check UID permission behavior.
102 *
103 * @param permName The permission to check.
104 * @param uid The UID for which to check.
105 * @param superImpl The super implementation.
106 * @return The check permission result.
107 */
108 int checkUidPermission(String permName, int uid,
109 BiFunction<String, Integer, Integer> superImpl);
110 }
111
Svet Ganovadc1cf42015-06-15 16:36:24 -0700112 /**
113 * Provider for package names.
114 */
115 public interface PackagesProvider {
116
117 /**
118 * Gets the packages for a given user.
119 * @param userId The user id.
120 * @return The package names.
121 */
122 public String[] getPackages(int userId);
123 }
124
125 /**
Svetoslav0010b702015-06-30 18:05:26 -0700126 * Provider for package names.
127 */
128 public interface SyncAdapterPackagesProvider {
129
130 /**
131 * Gets the sync adapter packages for given authority and user.
132 * @param authority The authority.
133 * @param userId The user id.
134 * @return The package names.
135 */
136 public String[] getPackages(String authority, int userId);
137 }
138
139 /**
Hai Zhang85fd0622019-02-01 14:06:04 -0800140 * Provider for default browser
141 */
142 public interface DefaultBrowserProvider {
143
144 /**
145 * Get the package name of the default browser.
146 *
147 * @param userId the user id
148 *
149 * @return the package name of the default browser, or {@code null} if none
150 */
151 @Nullable
152 String getDefaultBrowser(@UserIdInt int userId);
153
154 /**
155 * Set the package name of the default browser.
156 *
157 * @param packageName package name of the default browser, or {@code null} to remove
158 * @param userId the user id
159 *
160 * @return whether the default browser was successfully set.
161 */
162 boolean setDefaultBrowser(@Nullable String packageName, @UserIdInt int userId);
163 }
164
165 /**
Hai Zhang8be463f2019-02-11 16:44:45 -0800166 * Provider for default home
167 */
168 public interface DefaultHomeProvider {
169
170 /**
171 * Get the package name of the default home.
172 *
173 * @param userId the user id
174 *
175 * @return the package name of the default home, or {@code null} if none
176 */
177 @Nullable
178 String getDefaultHome(@UserIdInt int userId);
179
180 /**
181 * Set the package name of the default home.
182 *
183 * @param packageName package name of the default home, or {@code null} to remove
184 * @param userId the user id
185 */
186 void setDefaultHomeAsync(@Nullable String packageName, @UserIdInt int userId);
187 }
188
189 /**
Svet Ganovadc1cf42015-06-15 16:36:24 -0700190 * Sets the location provider packages provider.
191 * @param provider The packages provider.
192 */
193 public abstract void setLocationPackagesProvider(PackagesProvider provider);
194
195 /**
Wei Wangffb94e62019-01-14 00:05:45 -0800196 * Set the location extra packages provider.
197 * @param provider The packages provider.
198 */
199 public abstract void setLocationExtraPackagesProvider(PackagesProvider provider);
200
201 /**
Svet Ganovadc1cf42015-06-15 16:36:24 -0700202 * Sets the voice interaction packages provider.
203 * @param provider The packages provider.
204 */
205 public abstract void setVoiceInteractionPackagesProvider(PackagesProvider provider);
Svetoslavcdfd2302015-06-25 19:07:31 -0700206
207 /**
Eric Enslen1e423b92017-12-18 11:30:21 -0800208 * Sets the Use Open Wifi packages provider.
209 * @param provider The packages provider.
210 */
211 public abstract void setUseOpenWifiAppPackagesProvider(PackagesProvider provider);
212
213 /**
Svetoslav0010b702015-06-30 18:05:26 -0700214 * Sets the sync adapter packages provider.
215 * @param provider The provider.
216 */
217 public abstract void setSyncAdapterPackagesprovider(SyncAdapterPackagesProvider provider);
218
219 /**
Philip P. Moltmannb0be05c2018-09-19 02:46:56 +0000220 * Called when the package for the default dialer changed
221 *
222 * @param packageName the new dialer package
223 * @param userId user for which the change was made
Svetoslavcdfd2302015-06-25 19:07:31 -0700224 */
Philip P. Moltmannb0be05c2018-09-19 02:46:56 +0000225 public void onDefaultDialerAppChanged(String packageName, int userId) {}
Svetoslavcdfd2302015-06-25 19:07:31 -0700226
227 /**
Philip P. Moltmannb0be05c2018-09-19 02:46:56 +0000228 * Called when the package for the default SMS handler changed
229 *
230 * @param packageName the new sms package
231 * @param userId user for which the change was made
Svetoslavcdfd2302015-06-25 19:07:31 -0700232 */
Philip P. Moltmannb0be05c2018-09-19 02:46:56 +0000233 public void onDefaultSmsAppChanged(String packageName, int userId) {}
Sailesh Nepalcf855622015-07-28 19:22:14 -0700234
235 /**
Philip P. Moltmannb0be05c2018-09-19 02:46:56 +0000236 * Called when the package for the default sim call manager changed
237 *
238 * @param packageName the new sms package
239 * @param userId user for which the change was made
Sailesh Nepalcf855622015-07-28 19:22:14 -0700240 */
Philip P. Moltmannb0be05c2018-09-19 02:46:56 +0000241 public void onDefaultSimCallManagerAppChanged(String packageName, int userId) {}
Fyodor Kupolovcb6fd802015-11-05 14:27:06 -0800242
243 /**
Eric Enslen1e423b92017-12-18 11:30:21 -0800244 * Requests granting of the default permissions to the current default Use Open Wifi app.
245 * @param packageName The default use open wifi package name.
246 * @param userId The user for which to grant the permissions.
247 */
248 public abstract void grantDefaultPermissionsToDefaultUseOpenWifiApp(String packageName,
249 int userId);
250
251 /**
Fyodor Kupolovcb6fd802015-11-05 14:27:06 -0800252 * Sets a list of apps to keep in PM's internal data structures and as APKs even if no user has
253 * currently installed it. The apps are not preloaded.
254 * @param packageList List of package names to keep cached.
255 */
256 public abstract void setKeepUninstalledPackages(List<String> packageList);
Svet Ganov9c165d72015-12-01 19:52:26 -0800257
258 /**
259 * Gets whether some of the permissions used by this package require a user
260 * review before any of the app components can run.
261 * @param packageName The package name for which to check.
262 * @param userId The user under which to check.
263 * @return True a permissions review is required.
264 */
265 public abstract boolean isPermissionsReviewRequired(String packageName, int userId);
Todd Kennedy39bfee52016-02-24 10:28:21 -0800266
267 /**
Todd Kennedy18211fd2017-06-06 09:15:46 -0700268 * Retrieve all of the information we know about a particular package/application.
269 * @param filterCallingUid The results will be filtered in the context of this UID instead
270 * of the calling UID.
271 * @see PackageManager#getPackageInfo(String, int)
Todd Kennedy39bfee52016-02-24 10:28:21 -0800272 */
Todd Kennedy18211fd2017-06-06 09:15:46 -0700273 public abstract PackageInfo getPackageInfo(String packageName,
274 @PackageInfoFlags int flags, int filterCallingUid, int userId);
275
276 /**
Ricky Waicf134eb2018-10-10 09:26:32 +0100277 * Return a List of all application packages that are installed on the
278 * device, for a specific user. If flag GET_UNINSTALLED_PACKAGES has been
279 * set, a list of all applications including those deleted with
280 * {@code DONT_DELETE_DATA} (partially installed apps with data directory)
281 * will be returned.
282 *
283 * @param flags Additional option flags to modify the data returned.
284 * @param userId The user for whom the installed applications are to be
285 * listed
286 * @param callingUid The uid of the original caller app
287 * @return A List of ApplicationInfo objects, one for each installed
288 * application. In the unlikely case there are no installed
289 * packages, an empty list is returned. If flag
290 * {@code MATCH_UNINSTALLED_PACKAGES} is set, the application
291 * information is retrieved from the list of uninstalled
292 * applications (which includes installed applications as well as
293 * applications with data directory i.e. applications which had been
294 * deleted with {@code DONT_DELETE_DATA} flag set).
295 */
296 public abstract List<ApplicationInfo> getInstalledApplications(
297 @ApplicationInfoFlags int flags, @UserIdInt int userId, int callingUid);
298
299 /**
Suprabh Shukla19b41f32018-03-26 22:35:13 -0700300 * Retrieve launcher extras for a suspended package provided to the system in
301 * {@link PackageManager#setPackagesSuspended(String[], boolean, PersistableBundle,
Suprabh Shukla3c3af142018-03-30 00:28:37 -0700302 * PersistableBundle, String)}.
Suprabh Shukla19b41f32018-03-26 22:35:13 -0700303 *
304 * @param packageName The package for which to return launcher extras.
Suprabh Shukla3c3af142018-03-30 00:28:37 -0700305 * @param userId The user for which to check.
Suprabh Shukla19b41f32018-03-26 22:35:13 -0700306 * @return The launcher extras.
307 *
308 * @see PackageManager#setPackagesSuspended(String[], boolean, PersistableBundle,
309 * PersistableBundle, String)
310 * @see PackageManager#isPackageSuspended()
311 */
312 public abstract Bundle getSuspendedPackageLauncherExtras(String packageName,
313 int userId);
314
315 /**
Suprabh Shukla69c71422018-04-02 18:39:01 -0700316 * Internal api to query the suspended state of a package.
317 * @param packageName The package to check.
318 * @param userId The user id to check for.
319 * @return {@code true} if the package is suspended, {@code false} otherwise.
320 * @see PackageManager#isPackageSuspended(String)
321 */
322 public abstract boolean isPackageSuspended(String packageName, int userId);
323
324 /**
Suprabh Shukla3c3af142018-03-30 00:28:37 -0700325 * Get the name of the package that suspended the given package. Packages can be suspended by
326 * device administrators or apps holding {@link android.Manifest.permission#MANAGE_USERS} or
327 * {@link android.Manifest.permission#SUSPEND_APPS}.
328 *
329 * @param suspendedPackage The package that has been suspended.
330 * @param userId The user for which to check.
331 * @return Name of the package that suspended the given package. Returns {@code null} if the
332 * given package is not currently suspended and the platform package name - i.e.
333 * {@code "android"} - if the package was suspended by a device admin.
334 */
335 public abstract String getSuspendingPackage(String suspendedPackage, int userId);
336
337 /**
Suprabh Shukla389cb6f2018-10-01 18:20:39 -0700338 * Get the information describing the dialog to be shown to the user when they try to launch a
339 * suspended application.
Suprabh Shukla3c3af142018-03-30 00:28:37 -0700340 *
341 * @param suspendedPackage The package that has been suspended.
342 * @param userId The user for which to check.
Suprabh Shukla389cb6f2018-10-01 18:20:39 -0700343 * @return A {@link SuspendDialogInfo} object describing the dialog to be shown.
Suprabh Shukla3c3af142018-03-30 00:28:37 -0700344 */
Suprabh Shukla389cb6f2018-10-01 18:20:39 -0700345 @Nullable
346 public abstract SuspendDialogInfo getSuspendedDialogInfo(String suspendedPackage, int userId);
Suprabh Shukla3c3af142018-03-30 00:28:37 -0700347
348 /**
Suprabh Shukla79000492018-12-24 17:03:02 -0800349 * Gets any distraction flags set via
350 * {@link PackageManager#setDistractingPackageRestrictions(String[], int)}
351 *
352 * @param packageName
353 * @param userId
354 * @return A bitwise OR of any of the {@link PackageManager.DistractionRestriction}
355 */
356 public abstract @PackageManager.DistractionRestriction int getDistractingPackageRestrictions(
357 String packageName, int userId);
358
359 /**
Christopher Tatea732f012017-10-26 17:26:53 -0700360 * Do a straight uid lookup for the given package/application in the given user.
361 * @see PackageManager#getPackageUidAsUser(String, int, int)
362 * @return The app's uid, or < 0 if the package was not found in that user
363 */
364 public abstract int getPackageUid(String packageName,
365 @PackageInfoFlags int flags, int userId);
366
367 /**
Todd Kennedy18211fd2017-06-06 09:15:46 -0700368 * Retrieve all of the information we know about a particular package/application.
369 * @param filterCallingUid The results will be filtered in the context of this UID instead
370 * of the calling UID.
371 * @see PackageManager#getApplicationInfo(String, int)
372 */
373 public abstract ApplicationInfo getApplicationInfo(String packageName,
374 @ApplicationInfoFlags int flags, int filterCallingUid, int userId);
375
376 /**
377 * Retrieve all of the information we know about a particular activity class.
378 * @param filterCallingUid The results will be filtered in the context of this UID instead
379 * of the calling UID.
380 * @see PackageManager#getActivityInfo(ComponentName, int)
381 */
382 public abstract ActivityInfo getActivityInfo(ComponentName component,
383 @ComponentInfoFlags int flags, int filterCallingUid, int userId);
384
385 /**
386 * Retrieve all activities that can be performed for the given intent.
387 * @param filterCallingUid The results will be filtered in the context of this UID instead
388 * of the calling UID.
389 * @see PackageManager#queryIntentActivities(Intent, int)
390 */
391 public abstract List<ResolveInfo> queryIntentActivities(Intent intent,
392 @ResolveInfoFlags int flags, int filterCallingUid, int userId);
Makoto Onuki2d5b4652016-03-11 16:09:54 -0800393
394 /**
Todd Kennedy82b08422017-09-28 13:32:05 -0700395 * Retrieve all services that can be performed for the given intent.
396 * @see PackageManager#queryIntentServices(Intent, int)
397 */
398 public abstract List<ResolveInfo> queryIntentServices(
399 Intent intent, int flags, int callingUid, int userId);
400
401 /**
Makoto Onuki2d5b4652016-03-11 16:09:54 -0800402 * Interface to {@link com.android.server.pm.PackageManagerService#getHomeActivitiesAsUser}.
403 */
404 public abstract ComponentName getHomeActivitiesAsUser(List<ResolveInfo> allHomeCandidates,
405 int userId);
Makoto Onukic29f62c2016-06-07 12:19:46 -0700406
407 /**
Winson Chungc1674272018-02-21 10:15:17 -0800408 * @return The default home activity component name.
409 */
410 public abstract ComponentName getDefaultHomeActivity(int userId);
411
412 /**
Makoto Onukic29f62c2016-06-07 12:19:46 -0700413 * Called by DeviceOwnerManagerService to set the package names of device owner and profile
414 * owners.
415 */
416 public abstract void setDeviceAndProfileOwnerPackages(
417 int deviceOwnerUserId, String deviceOwner, SparseArray<String> profileOwners);
418
419 /**
Steven Ng9d48a732016-06-24 19:04:14 +0100420 * Returns {@code true} if a given package can't be wiped. Otherwise, returns {@code false}.
Makoto Onukic29f62c2016-06-07 12:19:46 -0700421 */
Steven Ng9d48a732016-06-24 19:04:14 +0100422 public abstract boolean isPackageDataProtected(int userId, String packageName);
Svet Ganov973edd192016-09-08 20:15:55 -0700423
424 /**
Benjamin Franzf81bf7f2018-03-26 16:23:04 +0100425 * Returns {@code true} if a given package's state is protected, e.g. it cannot be force
426 * stopped, suspended, disabled or hidden. Otherwise, returns {@code false}.
427 */
428 public abstract boolean isPackageStateProtected(String packageName, int userId);
429
430 /**
Dianne Hackborne07641d2016-11-09 15:07:23 -0800431 * Returns {@code true} if a given package is installed as ephemeral. Otherwise, returns
432 * {@code false}.
433 */
434 public abstract boolean isPackageEphemeral(int userId, String packageName);
435
436 /**
Svet Ganov973edd192016-09-08 20:15:55 -0700437 * Gets whether the package was ever launched.
438 * @param packageName The package name.
439 * @param userId The user for which to check.
440 * @return Whether was launched.
Amith Yamasani2cbfa1e2017-03-28 10:34:01 -0700441 * @throws IllegalArgumentException if the package is not found
Svet Ganov973edd192016-09-08 20:15:55 -0700442 */
443 public abstract boolean wasPackageEverLaunched(String packageName, int userId);
Nicolas Prevot700e1e72016-09-28 15:17:18 +0100444
445 /**
446 * Grants a runtime permission
447 * @param packageName The package name.
448 * @param name The name of the permission.
449 * @param userId The userId for which to grant the permission.
450 * @param overridePolicy If true, grant this permission even if it is fixed by policy.
451 */
452 public abstract void grantRuntimePermission(String packageName, String name, int userId,
453 boolean overridePolicy);
454
455 /**
456 * Revokes a runtime permission
457 * @param packageName The package name.
458 * @param name The name of the permission.
459 * @param userId The userId for which to revoke the permission.
460 * @param overridePolicy If true, revoke this permission even if it is fixed by policy.
461 */
462 public abstract void revokeRuntimePermission(String packageName, String name, int userId,
463 boolean overridePolicy);
464
Michal Karpinskif77ee4f2016-10-12 16:40:06 +0100465 /**
Michal Karpinskicb67dc92016-12-13 18:20:23 +0000466 * Retrieve the official name associated with a uid. This name is
Michal Karpinskif77ee4f2016-10-12 16:40:06 +0100467 * guaranteed to never change, though it is possible for the underlying
Michal Karpinskicb67dc92016-12-13 18:20:23 +0000468 * uid to be changed. That is, if you are storing information about
469 * uids in persistent storage, you should use the string returned
470 * by this function instead of the raw uid.
Michal Karpinskif77ee4f2016-10-12 16:40:06 +0100471 *
Michal Karpinskicb67dc92016-12-13 18:20:23 +0000472 * @param uid The uid for which you would like to retrieve a name.
473 * @return Returns a unique name for the given uid, or null if the
474 * uid is not currently assigned.
Michal Karpinskif77ee4f2016-10-12 16:40:06 +0100475 */
476 public abstract String getNameForUid(int uid);
477
Todd Kennedy01ad0c72016-11-11 15:33:12 -0800478 /**
479 * Request to perform the second phase of ephemeral resolution.
480 * @param responseObj The response of the first phase of ephemeral resolution
481 * @param origIntent The original intent that triggered ephemeral resolution
482 * @param resolvedType The resolved type of the intent
Todd Kennedy01ad0c72016-11-11 15:33:12 -0800483 * @param callingPackage The name of the package requesting the ephemeral application
Chad Brubaker06068612017-04-06 09:43:47 -0700484 * @param verificationBundle Optional bundle to pass to the installer for additional
485 * verification
Todd Kennedy01ad0c72016-11-11 15:33:12 -0800486 * @param userId The ID of the user that triggered ephemeral resolution
487 */
Todd Kennedye9910222017-02-21 16:00:11 -0800488 public abstract void requestInstantAppResolutionPhaseTwo(AuxiliaryResolveInfo responseObj,
489 Intent origIntent, String resolvedType, String callingPackage,
Chad Brubaker06068612017-04-06 09:43:47 -0700490 Bundle verificationBundle, int userId);
Svetoslav Ganove080da92016-12-21 17:10:35 -0800491
492 /**
Todd Kennedy0e989d02017-01-13 14:15:36 -0800493 * Grants access to the package metadata for an ephemeral application.
494 * <p>
495 * When an ephemeral application explicitly tries to interact with a full
496 * install application [via an activity, service or provider that has been
497 * exposed using the {@code visibleToInstantApp} attribute], the normal
498 * application must be able to see metadata about the connecting ephemeral
499 * app. If the ephemeral application uses an implicit intent [ie action VIEW,
500 * category BROWSABLE], it remains hidden from the launched activity.
501 * <p>
502 * If the {@code sourceUid} is not for an ephemeral app or {@code targetUid}
503 * is not for a fully installed app, this method will be a no-op.
504 *
505 * @param userId the user
506 * @param intent the intent that triggered the grant
507 * @param targetAppId The app ID of the fully installed application
508 * @param ephemeralAppId The app ID of the ephemeral application
509 */
510 public abstract void grantEphemeralAccess(int userId, Intent intent,
511 int targetAppId, int ephemeralAppId);
512
Todd Kennedyb21be122017-03-24 14:10:01 -0700513 public abstract boolean isInstantAppInstallerComponent(ComponentName component);
Todd Kennedy0e989d02017-01-13 14:15:36 -0800514 /**
Svetoslav Ganov096d3042017-01-30 16:34:13 -0800515 * Prunes instant apps and state associated with uninstalled
516 * instant apps according to the current platform policy.
517 */
518 public abstract void pruneInstantApps();
519
520 /**
Svetoslav Ganove080da92016-12-21 17:10:35 -0800521 * @return The SetupWizard package name.
522 */
523 public abstract String getSetupWizardPackageName();
Suprabh Shuklaaef25132017-01-23 18:09:03 -0800524
525 public interface ExternalSourcesPolicy {
526
527 int USER_TRUSTED = 0; // User has trusted the package to install apps
528 int USER_BLOCKED = 1; // User has blocked the package to install apps
529 int USER_DEFAULT = 2; // Default code to use when user response is unavailable
530
531 /**
532 * Checks the user preference for whether a package is trusted to request installs through
533 * package installer
534 *
535 * @param packageName The package to check for
536 * @param uid the uid in which the package is running
Philip P. Moltmannb0be05c2018-09-19 02:46:56 +0000537 * @return {@link #USER_TRUSTED} if the user has trusted the package, {@link #USER_BLOCKED}
538 * if user has blocked requests from the package, {@link #USER_DEFAULT} if the user response
Suprabh Shuklaaef25132017-01-23 18:09:03 -0800539 * is not yet available
540 */
541 int getPackageTrustedToInstallApps(String packageName, int uid);
542 }
543
544 public abstract void setExternalSourcesPolicy(ExternalSourcesPolicy policy);
MÃ¥rten Kongstadeabc9e92015-12-15 16:40:23 +0100545
546 /**
Dianne Hackbornb1e77762017-02-13 11:42:18 -0800547 * Return true if the given package is a persistent app process.
548 */
549 public abstract boolean isPackagePersistent(String packageName);
550
551 /**
Todd Kennedyc29b11a2017-10-23 15:55:59 -0700552 * Returns whether or not the given package represents a legacy system application released
553 * prior to runtime permissions.
554 */
555 public abstract boolean isLegacySystemApp(PackageParser.Package pkg);
556
557 /**
MÃ¥rten Kongstadeabc9e92015-12-15 16:40:23 +0100558 * Get all overlay packages for a user.
559 * @param userId The user for which to get the overlays.
560 * @return A list of overlay packages. An empty list is returned if the
561 * user has no installed overlay packages.
562 */
563 public abstract List<PackageInfo> getOverlayPackages(int userId);
564
565 /**
566 * Get the names of all target packages for a user.
567 * @param userId The user for which to get the package names.
568 * @return A list of target package names. This list includes the "android" package.
569 */
570 public abstract List<String> getTargetPackageNames(int userId);
571
572 /**
573 * Set which overlay to use for a package.
574 * @param userId The user for which to update the overlays.
575 * @param targetPackageName The package name of the package for which to update the overlays.
576 * @param overlayPackageNames The complete list of overlay packages that should be enabled for
577 * the target. Previously enabled overlays not specified in the list
578 * will be disabled. Pass in null or an empty list to disable
579 * all overlays. The order of the items is significant if several
580 * overlays modify the same resource.
581 * @return true if all packages names were known by the package manager, false otherwise
582 */
583 public abstract boolean setEnabledOverlayPackages(int userId, String targetPackageName,
584 List<String> overlayPackageNames);
Todd Kennedy4d1de7d2017-02-23 10:32:18 -0800585
586 /**
Todd Kennedy51b3aac2017-03-30 17:50:42 -0700587 * Resolves an activity intent, allowing instant apps to be resolved.
Todd Kennedy4d1de7d2017-02-23 10:32:18 -0800588 */
589 public abstract ResolveInfo resolveIntent(Intent intent, String resolvedType,
Patrick Baumann78380272018-04-04 10:41:01 -0700590 int flags, int userId, boolean resolveForStart, int filterCallingUid);
Chad Brubaker0f28a802017-03-29 14:05:52 -0700591
592 /**
Todd Kennedy51b3aac2017-03-30 17:50:42 -0700593 * Resolves a service intent, allowing instant apps to be resolved.
594 */
Todd Kennedy82b08422017-09-28 13:32:05 -0700595 public abstract ResolveInfo resolveService(Intent intent, String resolvedType,
Todd Kennedy51b3aac2017-03-30 17:50:42 -0700596 int flags, int userId, int callingUid);
597
Todd Kennedy82b08422017-09-28 13:32:05 -0700598 /**
599 * Resolves a content provider intent.
600 */
601 public abstract ProviderInfo resolveContentProvider(String name, int flags, int userId);
602
Todd Kennedy51b3aac2017-03-30 17:50:42 -0700603 /**
Chad Brubaker0f28a802017-03-29 14:05:52 -0700604 * Track the creator of a new isolated uid.
605 * @param isolatedUid The newly created isolated uid.
606 * @param ownerUid The uid of the app that created the isolated process.
607 */
608 public abstract void addIsolatedUid(int isolatedUid, int ownerUid);
609
610 /**
611 * Track removal of an isolated uid.
612 * @param isolatedUid isolated uid that is no longer being used.
613 */
614 public abstract void removeIsolatedUid(int isolatedUid);
Makoto Onukie92f7942017-04-26 14:38:18 -0700615
616 /**
617 * Return the taget SDK version for the app with the given UID.
618 */
619 public abstract int getUidTargetSdkVersion(int uid);
Makoto Onukiad623012017-05-15 09:29:34 -0700620
Jeff Sharkey9252b342018-01-19 07:58:35 +0900621 /**
622 * Return the taget SDK version for the app with the given package name.
623 */
624 public abstract int getPackageTargetSdkVersion(String packageName);
625
Makoto Onukiad623012017-05-15 09:29:34 -0700626 /** Whether the binder caller can access instant apps. */
Todd Kennedy3051caa2017-05-23 15:54:18 -0700627 public abstract boolean canAccessInstantApps(int callingUid, int userId);
Svet Ganovf935a702017-08-22 12:15:58 -0700628
Todd Kennedy662504f2018-03-14 08:09:00 -0700629 /** Whether the binder caller can access the given component. */
630 public abstract boolean canAccessComponent(int callingUid, ComponentName component, int userId);
631
Svet Ganovf935a702017-08-22 12:15:58 -0700632 /**
633 * Returns {@code true} if a given package has instant application meta-data.
634 * Otherwise, returns {@code false}. Meta-data is state (eg. cookie, app icon, etc)
635 * associated with an instant app. It may be kept after the instant app has been uninstalled.
636 */
637 public abstract boolean hasInstantApplicationMetadata(String packageName, int userId);
Todd Kennedydf113c32017-08-31 16:10:29 -0700638
639 /**
640 * Updates a package last used time.
641 */
642 public abstract void notifyPackageUse(String packageName, int reason);
Todd Kennedy82b08422017-09-28 13:32:05 -0700643
644 /**
645 * Returns a package object for the given package name.
646 */
647 public abstract @Nullable PackageParser.Package getPackage(@NonNull String packageName);
648
649 /**
Todd Kennedy42d61602017-12-12 14:44:19 -0800650 * Returns a list without a change observer.
651 *
Philip P. Moltmannb0be05c2018-09-19 02:46:56 +0000652 * @see #getPackageList(PackageListObserver)
Todd Kennedy42d61602017-12-12 14:44:19 -0800653 */
654 public @NonNull PackageList getPackageList() {
655 return getPackageList(null);
656 }
657
658 /**
659 * Returns the list of packages installed at the time of the method call.
660 * <p>The given observer is notified when the list of installed packages
661 * changes [eg. a package was installed or uninstalled]. It will not be
662 * notified if a package is updated.
663 * <p>The package list will not be updated automatically as packages are
664 * installed / uninstalled. Any changes must be handled within the observer.
665 */
666 public abstract @NonNull PackageList getPackageList(@Nullable PackageListObserver observer);
667
668 /**
669 * Removes the observer.
670 * <p>Generally not needed. {@link #getPackageList(PackageListObserver)} will automatically
671 * remove the observer.
672 * <p>Does nothing if the observer isn't currently registered.
673 * <p>Observers are notified asynchronously and it's possible for an observer to be
674 * invoked after its been removed.
675 */
676 public abstract void removePackageListObserver(@NonNull PackageListObserver observer);
677
678 /**
Todd Kennedy82b08422017-09-28 13:32:05 -0700679 * Returns a package object for the disabled system package name.
680 */
Philip P. Moltmannb0be05c2018-09-19 02:46:56 +0000681 public abstract @Nullable PackageParser.Package getDisabledSystemPackage(
682 @NonNull String packageName);
683
684 /**
685 * Returns the package name for the disabled system package.
686 *
687 * This is equivalent to
688 * {@link #getDisabledSystemPackage(String)}.{@link PackageParser.Package#packageName}
689 */
690 public abstract @Nullable String getDisabledSystemPackageName(@NonNull String packageName);
Todd Kennedy82b08422017-09-28 13:32:05 -0700691
692 /**
693 * Returns whether or not the component is the resolver activity.
694 */
695 public abstract boolean isResolveActivityComponent(@NonNull ComponentInfo component);
696
697 /**
698 * Returns the package name for a known package.
699 */
700 public abstract @Nullable String getKnownPackageName(
701 @KnownPackage int knownPackage, int userId);
702
Todd Kennedy0eb97382017-10-03 16:57:22 -0700703 /**
704 * Returns whether the package is an instant app.
705 */
706 public abstract boolean isInstantApp(String packageName, int userId);
707
708 /**
709 * Returns whether the package is an instant app.
710 */
711 public abstract @Nullable String getInstantAppPackageName(int uid);
712
713 /**
714 * Returns whether or not access to the application should be filtered.
715 * <p>
716 * Access may be limited based upon whether the calling or target applications
717 * are instant applications.
718 *
Philip P. Moltmannb0be05c2018-09-19 02:46:56 +0000719 * @see #canAccessInstantApps
Todd Kennedy0eb97382017-10-03 16:57:22 -0700720 */
721 public abstract boolean filterAppAccess(
722 @Nullable PackageParser.Package pkg, int callingUid, int userId);
723
Todd Kennedy82b08422017-09-28 13:32:05 -0700724 /*
725 * NOTE: The following methods are temporary until permissions are extracted from
726 * the package manager into a component specifically for handling permissions.
727 */
Todd Kennedy82b08422017-09-28 13:32:05 -0700728 /** Returns the flags for the given permission. */
729 public abstract @Nullable int getPermissionFlagsTEMP(@NonNull String permName,
730 @NonNull String packageName, int userId);
731 /** Updates the flags for the given permission. */
732 public abstract void updatePermissionFlagsTEMP(@NonNull String permName,
733 @NonNull String packageName, int flagMask, int flagValues, int userId);
Michal Karpinski528c3e52018-02-07 17:47:10 +0000734
Philip P. Moltmannb0be05c2018-09-19 02:46:56 +0000735 /** Returns whether the given package was signed by the platform */
736 public abstract boolean isPlatformSigned(String pkg);
737
Michal Karpinski528c3e52018-02-07 17:47:10 +0000738 /**
739 * Returns true if it's still safe to restore data backed up from this app's version
740 * that was signed with restoringFromSigHash.
741 */
742 public abstract boolean isDataRestoreSafe(@NonNull byte[] restoringFromSigHash,
743 @NonNull String packageName);
744
745 /**
746 * Returns true if it's still safe to restore data backed up from this app's version
747 * that was signed with restoringFromSig.
748 */
749 public abstract boolean isDataRestoreSafe(@NonNull Signature restoringFromSig,
750 @NonNull String packageName);
Dan Cashman303c4bb2018-04-10 07:41:16 -0700751
Dan Cashman303c4bb2018-04-10 07:41:16 -0700752 /**
Todd Kennedycf827032018-07-03 13:17:22 -0700753 * Returns {@code true} if the the signing information for {@code clientUid} is sufficient
754 * to gain access gated by {@code capability}. This can happen if the two UIDs have the
755 * same signing information, if the signing information {@code clientUid} indicates that
756 * it has the signing certificate for {@code serverUid} in its signing history (if it was
757 * previously signed by it), or if the signing certificate for {@code clientUid} is in the
758 * signing history for {@code serverUid} and with the {@code capability} specified.
Dan Cashman303c4bb2018-04-10 07:41:16 -0700759 */
760 public abstract boolean hasSignatureCapability(int serverUid, int clientUid,
761 @PackageParser.SigningDetails.CertCapabilities int capability);
Svet Ganovd873ae62018-06-25 16:39:23 -0700762
763 /**
764 * Get the delegate to influence permission checking.
765 *
766 * @return The delegate instance or null to clear.
767 */
768 public abstract @Nullable CheckPermissionDelegate getCheckPermissionDelegate();
769
770 /**
771 * Set a delegate to influence permission checking.
772 *
773 * @param delegate A delegate instance or null to clear.
774 */
775 public abstract void setCheckPermissionDelegate(@Nullable CheckPermissionDelegate delegate);
Sudheer Shanka0a541a52018-07-31 13:21:11 -0700776
777 /**
778 * Get appIds of all available apps which specified android:sharedUserId in the manifest.
779 *
780 * @return a SparseArray mapping from appId to it's sharedUserId.
781 */
782 public abstract SparseArray<String> getAppsWithSharedUserIds();
Jeff Sharkey5790af02018-08-13 17:42:54 -0600783
784 /**
Sudheer Shanka2ac25a92018-10-25 10:59:32 -0700785 * Get the value of attribute android:sharedUserId for the given packageName if specified,
786 * otherwise {@code null}.
787 */
788 public abstract String getSharedUserIdForPackage(@NonNull String packageName);
789
790 /**
791 * Get all packages which specified the given sharedUserId as android:sharedUserId attribute
792 * or an empty array if no package specified it.
793 */
794 public abstract String[] getPackagesForSharedUserId(@NonNull String sharedUserId, int userId);
795
796 /**
Jeff Sharkey5790af02018-08-13 17:42:54 -0600797 * Return if device is currently in a "core" boot environment, typically
798 * used to support full-disk encryption. Only apps marked with
799 * {@code coreApp} attribute are available.
800 */
801 public abstract boolean isOnlyCoreApps();
802
803 /**
804 * Make a best-effort attempt to provide the requested free disk space by
805 * deleting cached files.
806 *
807 * @throws IOException if the request was unable to be fulfilled.
808 */
809 public abstract void freeStorage(String volumeUuid, long bytes, int storageFlags)
810 throws IOException;
Todd Kennedycf827032018-07-03 13:17:22 -0700811
812 /** Returns {@code true} if the specified component is enabled and matches the given flags. */
813 public abstract boolean isEnabledAndMatches(@NonNull ComponentInfo info, int flags, int userId);
814
815 /** Returns {@code true} if the given user requires extra badging for icons. */
816 public abstract boolean userNeedsBadging(int userId);
Eugene Suslaabdefba2018-11-09 18:06:43 -0800817
818 /**
819 * Perform the given action for each package.
820 * Note that packages lock will be held while performin the actions.
821 *
822 * @param actionLocked action to be performed
823 */
824 public abstract void forEachPackage(Consumer<PackageParser.Package> actionLocked);
825
826 /** Returns the list of enabled components */
827 public abstract ArraySet<String> getEnabledComponents(String packageName, int userId);
828
829 /** Returns the list of disabled components */
830 public abstract ArraySet<String> getDisabledComponents(String packageName, int userId);
831
832 /** Returns whether the given package is enabled for the given user */
833 public abstract @PackageManager.EnabledState int getApplicationEnabledState(
834 String packageName, int userId);
Richard Uhlerb29f1452018-09-12 16:38:15 +0100835
836 /**
837 * Extra field name for the token of a request to enable rollback for a
838 * package.
839 */
840 public static final String EXTRA_ENABLE_ROLLBACK_TOKEN =
841 "android.content.pm.extra.ENABLE_ROLLBACK_TOKEN";
842
843 /**
844 * Extra field name for the installFlags of a request to enable rollback
845 * for a package.
846 */
847 public static final String EXTRA_ENABLE_ROLLBACK_INSTALL_FLAGS =
848 "android.content.pm.extra.ENABLE_ROLLBACK_INSTALL_FLAGS";
849
850 /**
Narayan Kamath869f7062019-01-10 12:24:15 +0000851 * Extra field name for the set of installed users for a given rollback package.
852 */
853 public static final String EXTRA_ENABLE_ROLLBACK_INSTALLED_USERS =
854 "android.content.pm.extra.ENABLE_ROLLBACK_INSTALLED_USERS";
855
856 /**
Richard Uhlerb29f1452018-09-12 16:38:15 +0100857 * Used as the {@code enableRollbackCode} argument for
858 * {@link PackageManagerInternal#setEnableRollbackCode} to indicate that
859 * enabling rollback succeeded.
860 */
861 public static final int ENABLE_ROLLBACK_SUCCEEDED = 1;
862
863 /**
864 * Used as the {@code enableRollbackCode} argument for
865 * {@link PackageManagerInternal#setEnableRollbackCode} to indicate that
866 * enabling rollback failed.
867 */
868 public static final int ENABLE_ROLLBACK_FAILED = -1;
869
870 /**
871 * Allows the rollback manager listening to the
872 * {@link Intent#ACTION_PACKAGE_ENABLE_ROLLBACK enable rollback broadcast}
873 * to respond to the package manager. The response must include the
874 * {@code enableRollbackCode} which is one of
875 * {@link PackageManager#ENABLE_ROLLBACK_SUCCEEDED} or
876 * {@link PackageManager#ENABLE_ROLLBACK_FAILED}.
877 *
878 * @param token pending package identifier as passed via the
879 * {@link PackageManager#EXTRA_ENABLE_ROLLBACK_TOKEN} Intent extra.
880 * @param enableRollbackCode the status code result of enabling rollback
881 * @throws SecurityException if the caller does not have the
882 * PACKAGE_ROLLBACK_AGENT permission.
883 */
884 public abstract void setEnableRollbackCode(int token, int enableRollbackCode);
Eric Holka1485f62019-01-07 13:58:25 -0800885
886 /**
887 * Ask the package manager to compile layouts in the given package.
888 */
889 public abstract boolean compileLayouts(String packageName);
Narayan Kamath869f7062019-01-10 12:24:15 +0000890
891 /*
892 * Inform the package manager that the pending package install identified by
893 * {@code token} can be completed.
894 */
895 public abstract void finishPackageInstall(int token, boolean didLaunch);
Hai Zhanga22cd832019-01-30 13:38:43 -0800896
897 /**
898 * Remove the default browser stored in the legacy package settings.
899 *
900 * @param userId the user id
901 *
902 * @return the package name of the default browser, or {@code null} if none
903 */
904 @Nullable
905 public abstract String removeLegacyDefaultBrowserPackageName(int userId);
Hai Zhang85fd0622019-02-01 14:06:04 -0800906
907 /**
908 * Sets the default browser provider.
909 *
910 * @param provider the provider
911 */
912 public abstract void setDefaultBrowserProvider(@NonNull DefaultBrowserProvider provider);
Hai Zhang8be463f2019-02-11 16:44:45 -0800913
914 /**
915 * Sets the default home provider.
916 *
917 * @param provider the provider
918 */
919 public abstract void setDefaultHomeProvider(@NonNull DefaultHomeProvider provider);
Svet Ganovadc1cf42015-06-15 16:36:24 -0700920}