Dianne Hackborn | 7767eac | 2012-08-23 18:25:40 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 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 | |
| 17 | package android.content.pm; |
| 18 | |
| 19 | import static android.content.pm.PackageManager.COMPONENT_ENABLED_STATE_DEFAULT; |
Jeff Sharkey | 2bd31db | 2016-01-09 16:58:14 -0700 | [diff] [blame] | 20 | import static android.content.pm.PackageManager.COMPONENT_ENABLED_STATE_DISABLED; |
| 21 | import static android.content.pm.PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED; |
| 22 | import static android.content.pm.PackageManager.COMPONENT_ENABLED_STATE_DISABLED_USER; |
| 23 | import static android.content.pm.PackageManager.COMPONENT_ENABLED_STATE_ENABLED; |
Jeff Sharkey | 8a372a0 | 2016-03-16 16:25:45 -0600 | [diff] [blame] | 24 | import static android.content.pm.PackageManager.MATCH_DIRECT_BOOT_AWARE; |
| 25 | import static android.content.pm.PackageManager.MATCH_DIRECT_BOOT_UNAWARE; |
Todd Kennedy | 5eb5a7d | 2017-08-01 07:42:47 -0700 | [diff] [blame] | 26 | import static android.content.pm.PackageManager.MATCH_DISABLED_COMPONENTS; |
| 27 | import static android.content.pm.PackageManager.MATCH_DISABLED_UNTIL_USED_COMPONENTS; |
Jeff Sharkey | 2bd31db | 2016-01-09 16:58:14 -0700 | [diff] [blame] | 28 | import static android.content.pm.PackageManager.MATCH_SYSTEM_ONLY; |
Dianne Hackborn | 7767eac | 2012-08-23 18:25:40 -0700 | [diff] [blame] | 29 | |
Mathew Inwood | 1c77a11 | 2018-08-14 14:06:26 +0100 | [diff] [blame] | 30 | import android.annotation.UnsupportedAppUsage; |
Suprabh Shukla | 021b57a | 2018-03-08 18:21:50 -0800 | [diff] [blame] | 31 | import android.os.BaseBundle; |
| 32 | import android.os.PersistableBundle; |
Jeff Sharkey | 9f837a9 | 2014-10-24 12:07:24 -0700 | [diff] [blame] | 33 | import android.util.ArraySet; |
Dianne Hackborn | 7767eac | 2012-08-23 18:25:40 -0700 | [diff] [blame] | 34 | |
Jeff Sharkey | 2bd31db | 2016-01-09 16:58:14 -0700 | [diff] [blame] | 35 | import com.android.internal.util.ArrayUtils; |
| 36 | |
Mårten Kongstad | 2e0d0f3 | 2016-06-02 09:35:31 +0200 | [diff] [blame] | 37 | import java.util.Arrays; |
Suprabh Shukla | 3c3af14 | 2018-03-30 00:28:37 -0700 | [diff] [blame] | 38 | import java.util.Objects; |
Mårten Kongstad | 2e0d0f3 | 2016-06-02 09:35:31 +0200 | [diff] [blame] | 39 | |
Dianne Hackborn | 7767eac | 2012-08-23 18:25:40 -0700 | [diff] [blame] | 40 | /** |
| 41 | * Per-user state information about a package. |
Dianne Hackborn | 8832c18 | 2012-09-17 17:20:24 -0700 | [diff] [blame] | 42 | * @hide |
Dianne Hackborn | 7767eac | 2012-08-23 18:25:40 -0700 | [diff] [blame] | 43 | */ |
| 44 | public class PackageUserState { |
Jeff Sharkey | 4288419 | 2016-04-09 16:12:01 -0600 | [diff] [blame] | 45 | public long ceDataInode; |
| 46 | public boolean installed; |
Dianne Hackborn | 7767eac | 2012-08-23 18:25:40 -0700 | [diff] [blame] | 47 | public boolean stopped; |
| 48 | public boolean notLaunched; |
Amith Yamasani | e5bcff6 | 2014-07-19 15:44:09 -0700 | [diff] [blame] | 49 | public boolean hidden; // Is the app restricted by owner / admin |
Andrei Stingaceanu | 1e28391 | 2015-11-26 15:26:28 +0000 | [diff] [blame] | 50 | public boolean suspended; |
Suprabh Shukla | 021b57a | 2018-03-08 18:21:50 -0800 | [diff] [blame] | 51 | public String suspendingPackage; |
Suprabh Shukla | 3c3af14 | 2018-03-30 00:28:37 -0700 | [diff] [blame] | 52 | public String dialogMessage; // Message to show when a suspended package launch attempt is made |
Suprabh Shukla | 021b57a | 2018-03-08 18:21:50 -0800 | [diff] [blame] | 53 | public PersistableBundle suspendedAppExtras; |
| 54 | public PersistableBundle suspendedLauncherExtras; |
Todd Kennedy | be0b889 | 2017-02-15 14:13:52 -0800 | [diff] [blame] | 55 | public boolean instantApp; |
Todd Kennedy | 5eb5a7d | 2017-08-01 07:42:47 -0700 | [diff] [blame] | 56 | public boolean virtualPreload; |
Jeff Sharkey | 4288419 | 2016-04-09 16:12:01 -0600 | [diff] [blame] | 57 | public int enabled; |
Dianne Hackborn | 3fa3c28a | 2013-03-26 16:15:41 -0700 | [diff] [blame] | 58 | public String lastDisableAppCaller; |
Jeff Sharkey | 4288419 | 2016-04-09 16:12:01 -0600 | [diff] [blame] | 59 | public int domainVerificationStatus; |
| 60 | public int appLinkGeneration; |
Jeff Sharkey | 9bc89af | 2017-01-11 11:25:50 -0700 | [diff] [blame] | 61 | public int categoryHint = ApplicationInfo.CATEGORY_UNDEFINED; |
Bartosz Fabianowski | a34f53f | 2017-01-11 18:08:47 +0100 | [diff] [blame] | 62 | public int installReason; |
Ben Gruver | 1ab3d6e | 2017-12-07 13:45:08 -0800 | [diff] [blame] | 63 | public String harmfulAppWarning; |
Dianne Hackborn | 3fa3c28a | 2013-03-26 16:15:41 -0700 | [diff] [blame] | 64 | |
Jeff Sharkey | 9f837a9 | 2014-10-24 12:07:24 -0700 | [diff] [blame] | 65 | public ArraySet<String> disabledComponents; |
| 66 | public ArraySet<String> enabledComponents; |
Dianne Hackborn | 7767eac | 2012-08-23 18:25:40 -0700 | [diff] [blame] | 67 | |
Todd Kennedy | b274947 | 2017-06-13 08:24:32 -0700 | [diff] [blame] | 68 | public String[] overlayPaths; |
Mårten Kongstad | 2e0d0f3 | 2016-06-02 09:35:31 +0200 | [diff] [blame] | 69 | |
Mathew Inwood | 1c77a11 | 2018-08-14 14:06:26 +0100 | [diff] [blame] | 70 | @UnsupportedAppUsage |
Dianne Hackborn | 7767eac | 2012-08-23 18:25:40 -0700 | [diff] [blame] | 71 | public PackageUserState() { |
Dianne Hackborn | 7767eac | 2012-08-23 18:25:40 -0700 | [diff] [blame] | 72 | installed = true; |
Amith Yamasani | e5bcff6 | 2014-07-19 15:44:09 -0700 | [diff] [blame] | 73 | hidden = false; |
Andrei Stingaceanu | 1e28391 | 2015-11-26 15:26:28 +0000 | [diff] [blame] | 74 | suspended = false; |
Dianne Hackborn | 7767eac | 2012-08-23 18:25:40 -0700 | [diff] [blame] | 75 | enabled = COMPONENT_ENABLED_STATE_DEFAULT; |
Fabrice Di Meglio | 1c1b471 | 2014-11-19 17:12:32 -0800 | [diff] [blame] | 76 | domainVerificationStatus = |
| 77 | PackageManager.INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED; |
Bartosz Fabianowski | a34f53f | 2017-01-11 18:08:47 +0100 | [diff] [blame] | 78 | installReason = PackageManager.INSTALL_REASON_UNKNOWN; |
Dianne Hackborn | 7767eac | 2012-08-23 18:25:40 -0700 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | public PackageUserState(PackageUserState o) { |
Jeff Sharkey | 4288419 | 2016-04-09 16:12:01 -0600 | [diff] [blame] | 82 | ceDataInode = o.ceDataInode; |
Dianne Hackborn | 7767eac | 2012-08-23 18:25:40 -0700 | [diff] [blame] | 83 | installed = o.installed; |
| 84 | stopped = o.stopped; |
| 85 | notLaunched = o.notLaunched; |
Amith Yamasani | e5bcff6 | 2014-07-19 15:44:09 -0700 | [diff] [blame] | 86 | hidden = o.hidden; |
Andrei Stingaceanu | 1e28391 | 2015-11-26 15:26:28 +0000 | [diff] [blame] | 87 | suspended = o.suspended; |
Suprabh Shukla | 021b57a | 2018-03-08 18:21:50 -0800 | [diff] [blame] | 88 | suspendingPackage = o.suspendingPackage; |
Suprabh Shukla | 3c3af14 | 2018-03-30 00:28:37 -0700 | [diff] [blame] | 89 | dialogMessage = o.dialogMessage; |
Suprabh Shukla | 021b57a | 2018-03-08 18:21:50 -0800 | [diff] [blame] | 90 | suspendedAppExtras = o.suspendedAppExtras; |
| 91 | suspendedLauncherExtras = o.suspendedLauncherExtras; |
Todd Kennedy | be0b889 | 2017-02-15 14:13:52 -0800 | [diff] [blame] | 92 | instantApp = o.instantApp; |
Todd Kennedy | 5eb5a7d | 2017-08-01 07:42:47 -0700 | [diff] [blame] | 93 | virtualPreload = o.virtualPreload; |
Jeff Sharkey | 4288419 | 2016-04-09 16:12:01 -0600 | [diff] [blame] | 94 | enabled = o.enabled; |
| 95 | lastDisableAppCaller = o.lastDisableAppCaller; |
Fabrice Di Meglio | 1c1b471 | 2014-11-19 17:12:32 -0800 | [diff] [blame] | 96 | domainVerificationStatus = o.domainVerificationStatus; |
Christopher Tate | f0d6cb38 | 2015-07-10 17:44:53 -0700 | [diff] [blame] | 97 | appLinkGeneration = o.appLinkGeneration; |
Jeff Sharkey | 9bc89af | 2017-01-11 11:25:50 -0700 | [diff] [blame] | 98 | categoryHint = o.categoryHint; |
Bartosz Fabianowski | a34f53f | 2017-01-11 18:08:47 +0100 | [diff] [blame] | 99 | installReason = o.installReason; |
Jeff Sharkey | 4288419 | 2016-04-09 16:12:01 -0600 | [diff] [blame] | 100 | disabledComponents = ArrayUtils.cloneOrNull(o.disabledComponents); |
| 101 | enabledComponents = ArrayUtils.cloneOrNull(o.enabledComponents); |
Todd Kennedy | b274947 | 2017-06-13 08:24:32 -0700 | [diff] [blame] | 102 | overlayPaths = |
| 103 | o.overlayPaths == null ? null : Arrays.copyOf(o.overlayPaths, o.overlayPaths.length); |
Ben Gruver | 1ab3d6e | 2017-12-07 13:45:08 -0800 | [diff] [blame] | 104 | harmfulAppWarning = o.harmfulAppWarning; |
Dianne Hackborn | 7767eac | 2012-08-23 18:25:40 -0700 | [diff] [blame] | 105 | } |
Jeff Sharkey | 2bd31db | 2016-01-09 16:58:14 -0700 | [diff] [blame] | 106 | |
| 107 | /** |
| 108 | * Test if this package is installed. |
| 109 | */ |
Amith Yamasani | 0d1fd8d | 2016-10-12 14:21:51 -0700 | [diff] [blame] | 110 | public boolean isAvailable(int flags) { |
| 111 | // True if it is installed for this user and it is not hidden. If it is hidden, |
| 112 | // still return true if the caller requested MATCH_UNINSTALLED_PACKAGES |
| 113 | final boolean matchAnyUser = (flags & PackageManager.MATCH_ANY_USER) != 0; |
| 114 | final boolean matchUninstalled = (flags & PackageManager.MATCH_UNINSTALLED_PACKAGES) != 0; |
| 115 | return matchAnyUser |
| 116 | || (this.installed |
| 117 | && (!this.hidden || matchUninstalled)); |
Jeff Sharkey | 2bd31db | 2016-01-09 16:58:14 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Test if the given component is considered installed, enabled and a match |
| 122 | * for the given flags. |
Bernard Chau | 186f29b | 2016-04-13 15:58:38 +0100 | [diff] [blame] | 123 | * |
| 124 | * <p> |
| 125 | * Expects at least one of {@link PackageManager#MATCH_DIRECT_BOOT_AWARE} and |
| 126 | * {@link PackageManager#MATCH_DIRECT_BOOT_UNAWARE} are specified in {@code flags}. |
| 127 | * </p> |
Jeff Sharkey | 2bd31db | 2016-01-09 16:58:14 -0700 | [diff] [blame] | 128 | */ |
| 129 | public boolean isMatch(ComponentInfo componentInfo, int flags) { |
Amith Yamasani | 0d1fd8d | 2016-10-12 14:21:51 -0700 | [diff] [blame] | 130 | final boolean isSystemApp = componentInfo.applicationInfo.isSystemApp(); |
| 131 | final boolean matchUninstalled = (flags & PackageManager.MATCH_KNOWN_PACKAGES) != 0; |
| 132 | if (!isAvailable(flags) |
| 133 | && !(isSystemApp && matchUninstalled)) return false; |
Jeff Sharkey | 2bd31db | 2016-01-09 16:58:14 -0700 | [diff] [blame] | 134 | if (!isEnabled(componentInfo, flags)) return false; |
| 135 | |
| 136 | if ((flags & MATCH_SYSTEM_ONLY) != 0) { |
Amith Yamasani | 0d1fd8d | 2016-10-12 14:21:51 -0700 | [diff] [blame] | 137 | if (!isSystemApp) { |
Jeff Sharkey | 2bd31db | 2016-01-09 16:58:14 -0700 | [diff] [blame] | 138 | return false; |
| 139 | } |
| 140 | } |
| 141 | |
Jeff Sharkey | 8a372a0 | 2016-03-16 16:25:45 -0600 | [diff] [blame] | 142 | final boolean matchesUnaware = ((flags & MATCH_DIRECT_BOOT_UNAWARE) != 0) |
| 143 | && !componentInfo.directBootAware; |
| 144 | final boolean matchesAware = ((flags & MATCH_DIRECT_BOOT_AWARE) != 0) |
| 145 | && componentInfo.directBootAware; |
Jeff Sharkey | 2bd31db | 2016-01-09 16:58:14 -0700 | [diff] [blame] | 146 | return matchesUnaware || matchesAware; |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Test if the given component is considered enabled. |
| 151 | */ |
| 152 | public boolean isEnabled(ComponentInfo componentInfo, int flags) { |
| 153 | if ((flags & MATCH_DISABLED_COMPONENTS) != 0) { |
| 154 | return true; |
| 155 | } |
| 156 | |
| 157 | // First check if the overall package is disabled; if the package is |
| 158 | // enabled then fall through to check specific component |
| 159 | switch (this.enabled) { |
| 160 | case COMPONENT_ENABLED_STATE_DISABLED: |
| 161 | case COMPONENT_ENABLED_STATE_DISABLED_USER: |
| 162 | return false; |
| 163 | case COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED: |
| 164 | if ((flags & MATCH_DISABLED_UNTIL_USED_COMPONENTS) == 0) { |
| 165 | return false; |
| 166 | } |
| 167 | case COMPONENT_ENABLED_STATE_DEFAULT: |
| 168 | if (!componentInfo.applicationInfo.enabled) { |
| 169 | return false; |
| 170 | } |
| 171 | case COMPONENT_ENABLED_STATE_ENABLED: |
| 172 | break; |
| 173 | } |
| 174 | |
| 175 | // Check if component has explicit state before falling through to |
| 176 | // the manifest default |
| 177 | if (ArrayUtils.contains(this.enabledComponents, componentInfo.name)) { |
| 178 | return true; |
| 179 | } |
| 180 | if (ArrayUtils.contains(this.disabledComponents, componentInfo.name)) { |
| 181 | return false; |
| 182 | } |
| 183 | |
| 184 | return componentInfo.enabled; |
| 185 | } |
Todd Kennedy | 13715d5 | 2016-08-01 13:38:57 -0700 | [diff] [blame] | 186 | |
| 187 | @Override |
| 188 | final public boolean equals(Object obj) { |
| 189 | if (!(obj instanceof PackageUserState)) { |
| 190 | return false; |
| 191 | } |
| 192 | final PackageUserState oldState = (PackageUserState) obj; |
| 193 | if (ceDataInode != oldState.ceDataInode) { |
| 194 | return false; |
| 195 | } |
| 196 | if (installed != oldState.installed) { |
| 197 | return false; |
| 198 | } |
| 199 | if (stopped != oldState.stopped) { |
| 200 | return false; |
| 201 | } |
| 202 | if (notLaunched != oldState.notLaunched) { |
| 203 | return false; |
| 204 | } |
| 205 | if (hidden != oldState.hidden) { |
| 206 | return false; |
| 207 | } |
| 208 | if (suspended != oldState.suspended) { |
| 209 | return false; |
| 210 | } |
Suprabh Shukla | 021b57a | 2018-03-08 18:21:50 -0800 | [diff] [blame] | 211 | if (suspended) { |
| 212 | if (suspendingPackage == null |
| 213 | || !suspendingPackage.equals(oldState.suspendingPackage)) { |
| 214 | return false; |
| 215 | } |
Suprabh Shukla | 3c3af14 | 2018-03-30 00:28:37 -0700 | [diff] [blame] | 216 | if (!Objects.equals(dialogMessage, oldState.dialogMessage)) { |
| 217 | return false; |
| 218 | } |
Suprabh Shukla | 021b57a | 2018-03-08 18:21:50 -0800 | [diff] [blame] | 219 | if (!BaseBundle.kindofEquals(suspendedAppExtras, |
| 220 | oldState.suspendedAppExtras)) { |
| 221 | return false; |
| 222 | } |
| 223 | if (!BaseBundle.kindofEquals(suspendedLauncherExtras, |
| 224 | oldState.suspendedLauncherExtras)) { |
| 225 | return false; |
| 226 | } |
| 227 | } |
Todd Kennedy | be0b889 | 2017-02-15 14:13:52 -0800 | [diff] [blame] | 228 | if (instantApp != oldState.instantApp) { |
| 229 | return false; |
| 230 | } |
Todd Kennedy | 5eb5a7d | 2017-08-01 07:42:47 -0700 | [diff] [blame] | 231 | if (virtualPreload != oldState.virtualPreload) { |
| 232 | return false; |
| 233 | } |
Todd Kennedy | 13715d5 | 2016-08-01 13:38:57 -0700 | [diff] [blame] | 234 | if (enabled != oldState.enabled) { |
| 235 | return false; |
| 236 | } |
| 237 | if ((lastDisableAppCaller == null && oldState.lastDisableAppCaller != null) |
| 238 | || (lastDisableAppCaller != null |
| 239 | && !lastDisableAppCaller.equals(oldState.lastDisableAppCaller))) { |
| 240 | return false; |
| 241 | } |
| 242 | if (domainVerificationStatus != oldState.domainVerificationStatus) { |
| 243 | return false; |
| 244 | } |
| 245 | if (appLinkGeneration != oldState.appLinkGeneration) { |
| 246 | return false; |
| 247 | } |
Jeff Sharkey | 9bc89af | 2017-01-11 11:25:50 -0700 | [diff] [blame] | 248 | if (categoryHint != oldState.categoryHint) { |
| 249 | return false; |
| 250 | } |
Bartosz Fabianowski | a34f53f | 2017-01-11 18:08:47 +0100 | [diff] [blame] | 251 | if (installReason != oldState.installReason) { |
| 252 | return false; |
| 253 | } |
Todd Kennedy | 13715d5 | 2016-08-01 13:38:57 -0700 | [diff] [blame] | 254 | if ((disabledComponents == null && oldState.disabledComponents != null) |
| 255 | || (disabledComponents != null && oldState.disabledComponents == null)) { |
| 256 | return false; |
| 257 | } |
| 258 | if (disabledComponents != null) { |
| 259 | if (disabledComponents.size() != oldState.disabledComponents.size()) { |
| 260 | return false; |
| 261 | } |
| 262 | for (int i = disabledComponents.size() - 1; i >=0; --i) { |
| 263 | if (!oldState.disabledComponents.contains(disabledComponents.valueAt(i))) { |
| 264 | return false; |
| 265 | } |
| 266 | } |
| 267 | } |
| 268 | if ((enabledComponents == null && oldState.enabledComponents != null) |
| 269 | || (enabledComponents != null && oldState.enabledComponents == null)) { |
| 270 | return false; |
| 271 | } |
| 272 | if (enabledComponents != null) { |
| 273 | if (enabledComponents.size() != oldState.enabledComponents.size()) { |
| 274 | return false; |
| 275 | } |
| 276 | for (int i = enabledComponents.size() - 1; i >=0; --i) { |
| 277 | if (!oldState.enabledComponents.contains(enabledComponents.valueAt(i))) { |
| 278 | return false; |
| 279 | } |
| 280 | } |
| 281 | } |
Ben Gruver | 1ab3d6e | 2017-12-07 13:45:08 -0800 | [diff] [blame] | 282 | if (harmfulAppWarning == null && oldState.harmfulAppWarning != null |
| 283 | || (harmfulAppWarning != null |
| 284 | && !harmfulAppWarning.equals(oldState.harmfulAppWarning))) { |
| 285 | return false; |
| 286 | } |
Todd Kennedy | 13715d5 | 2016-08-01 13:38:57 -0700 | [diff] [blame] | 287 | return true; |
| 288 | } |
Jeff Sharkey | 9f837a9 | 2014-10-24 12:07:24 -0700 | [diff] [blame] | 289 | } |