Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 1 | // Copyright 2020 Google Inc. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package dexpreopt |
| 16 | |
| 17 | import ( |
| 18 | "fmt" |
Ulya Trafimovich | c9f2b94 | 2020-12-23 15:41:29 +0000 | [diff] [blame] | 19 | "sort" |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 20 | "strconv" |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 21 | "strings" |
| 22 | |
| 23 | "android/soong/android" |
| 24 | ) |
| 25 | |
Ulya Trafimovich | 480d174 | 2020-11-20 15:30:03 +0000 | [diff] [blame] | 26 | // This comment describes the following: |
| 27 | // 1. the concept of class loader context (CLC) and its relation to classpath |
| 28 | // 2. how PackageManager constructs CLC from shared libraries and their dependencies |
| 29 | // 3. build-time vs. run-time CLC and why this matters for dexpreopt |
| 30 | // 4. manifest fixer: a tool that adds missing <uses-library> tags to the manifests |
| 31 | // 5. build system support for CLC |
| 32 | // |
| 33 | // 1. Class loader context |
| 34 | // ----------------------- |
| 35 | // |
| 36 | // Java libraries and apps that have run-time dependency on other libraries should list the used |
| 37 | // libraries in their manifest (AndroidManifest.xml file). Each used library should be specified in |
| 38 | // a <uses-library> tag that has the library name and an optional attribute specifying if the |
| 39 | // library is optional or required. Required libraries are necessary for the library/app to run (it |
| 40 | // will fail at runtime if the library cannot be loaded), and optional libraries are used only if |
| 41 | // they are present (if not, the library/app can run without them). |
| 42 | // |
| 43 | // The libraries listed in <uses-library> tags are in the classpath of a library/app. |
| 44 | // |
| 45 | // Besides libraries, an app may also use another APK (for example in the case of split APKs), or |
| 46 | // anything that gets added by the app dynamically. In general, it is impossible to know at build |
| 47 | // time what the app may use at runtime. In the build system we focus on the known part: libraries. |
| 48 | // |
| 49 | // Class loader context (CLC) is a tree-like structure that describes class loader hierarchy. The |
| 50 | // build system uses CLC in a more narrow sense: it is a tree of libraries that represents |
| 51 | // transitive closure of all <uses-library> dependencies of a library/app. The top-level elements of |
| 52 | // a CLC are the direct <uses-library> dependencies specified in the manifest (aka. classpath). Each |
| 53 | // node of a CLC tree is a <uses-library> which may have its own <uses-library> sub-nodes. |
| 54 | // |
| 55 | // Because <uses-library> dependencies are, in general, a graph and not necessarily a tree, CLC may |
| 56 | // contain subtrees for the same library multiple times. In other words, CLC is the dependency graph |
| 57 | // "unfolded" to a tree. The duplication is only on a logical level, and the actual underlying class |
| 58 | // loaders are not duplicated (at runtime there is a single class loader instance for each library). |
| 59 | // |
| 60 | // Example: A has <uses-library> tags B, C and D; C has <uses-library tags> B and D; |
| 61 | // D has <uses-library> E; B and E have no <uses-library> dependencies. The CLC is: |
| 62 | // A |
| 63 | // ├── B |
| 64 | // ├── C |
| 65 | // │ ├── B |
| 66 | // │ └── D |
| 67 | // │ └── E |
| 68 | // └── D |
| 69 | // └── E |
| 70 | // |
| 71 | // CLC defines the lookup order of libraries when resolving Java classes used by the library/app. |
| 72 | // The lookup order is important because libraries may contain duplicate classes, and the class is |
| 73 | // resolved to the first match. |
| 74 | // |
| 75 | // 2. PackageManager and "shared" libraries |
| 76 | // ---------------------------------------- |
| 77 | // |
| 78 | // In order to load an APK at runtime, PackageManager (in frameworks/base) creates a CLC. It adds |
| 79 | // the libraries listed in the <uses-library> tags in the app's manifest as top-level CLC elements. |
| 80 | // For each of the used libraries PackageManager gets all its <uses-library> dependencies (specified |
| 81 | // as tags in the manifest of that library) and adds a nested CLC for each dependency. This process |
| 82 | // continues recursively until all leaf nodes of the constructed CLC tree are libraries that have no |
| 83 | // <uses-library> dependencies. |
| 84 | // |
| 85 | // PackageManager is aware only of "shared" libraries. The definition of "shared" here differs from |
| 86 | // its usual meaning (as in shared vs. static). In Android, Java "shared" libraries are those listed |
| 87 | // in /system/etc/permissions/platform.xml file. This file is installed on device. Each entry in it |
| 88 | // contains the name of a "shared" library, a path to its DEX jar file and a list of dependencies |
| 89 | // (other "shared" libraries that this one uses at runtime and specifies them in <uses-library> tags |
| 90 | // in its manifest). |
| 91 | // |
| 92 | // In other words, there are two sources of information that allow PackageManager to construct CLC |
| 93 | // at runtime: <uses-library> tags in the manifests and "shared" library dependencies in |
| 94 | // /system/etc/permissions/platform.xml. |
| 95 | // |
| 96 | // 3. Build-time and run-time CLC and dexpreopt |
| 97 | // -------------------------------------------- |
| 98 | // |
| 99 | // CLC is needed not only when loading a library/app, but also when compiling it. Compilation may |
| 100 | // happen either on device (known as "dexopt") or during the build (known as "dexpreopt"). Since |
| 101 | // dexopt takes place on device, it has the same information as PackageManager (manifests and |
| 102 | // shared library dependencies). Dexpreopt, on the other hand, takes place on host and in a totally |
| 103 | // different environment, and it has to get the same information from the build system (see the |
| 104 | // section about build system support below). |
| 105 | // |
| 106 | // Thus, the build-time CLC used by dexpreopt and the run-time CLC used by PackageManager are |
| 107 | // the same thing, but computed in two different ways. |
| 108 | // |
| 109 | // It is important that build-time and run-time CLCs coincide, otherwise the AOT-compiled code |
| 110 | // created by dexpreopt will be rejected. In order to check the equality of build-time and |
| 111 | // run-time CLCs, the dex2oat compiler records build-time CLC in the *.odex files (in the |
| 112 | // "classpath" field of the OAT file header). To find the stored CLC, use the following command: |
| 113 | // `oatdump --oat-file=<FILE> | grep '^classpath = '`. |
| 114 | // |
| 115 | // Mismatch between build-time and run-time CLC is reported in logcat during boot (search with |
| 116 | // `logcat | grep -E 'ClassLoaderContext [a-z ]+ mismatch'`. Mismatch is bad for performance, as it |
| 117 | // forces the library/app to either be dexopted, or to run without any optimizations (e.g. the app's |
| 118 | // code may need to be extracted in memory from the APK, a very expensive operation). |
| 119 | // |
| 120 | // A <uses-library> can be either optional or required. From dexpreopt standpoint, required library |
| 121 | // must be present at build time (its absence is a build error). An optional library may be either |
| 122 | // present or absent at build time: if present, it will be added to the CLC, passed to dex2oat and |
| 123 | // recorded in the *.odex file; otherwise, if the library is absent, it will be skipped and not |
| 124 | // added to CLC. If there is a mismatch between built-time and run-time status (optional library is |
| 125 | // present in one case, but not the other), then the build-time and run-time CLCs won't match and |
| 126 | // the compiled code will be rejected. It is unknown at build time if the library will be present at |
| 127 | // runtime, therefore either including or excluding it may cause CLC mismatch. |
| 128 | // |
| 129 | // 4. Manifest fixer |
| 130 | // ----------------- |
| 131 | // |
| 132 | // Sometimes <uses-library> tags are missing from the source manifest of a library/app. This may |
| 133 | // happen for example if one of the transitive dependencies of the library/app starts using another |
| 134 | // <uses-library>, and the library/app's manifest isn't updated to include it. |
| 135 | // |
| 136 | // Soong can compute some of the missing <uses-library> tags for a given library/app automatically |
| 137 | // as SDK libraries in the transitive dependency closure of the library/app. The closure is needed |
| 138 | // because a library/app may depend on a static library that may in turn depend on an SDK library, |
| 139 | // (possibly transitively via another library). |
| 140 | // |
| 141 | // Not all <uses-library> tags can be computed in this way, because some of the <uses-library> |
| 142 | // dependencies are not SDK libraries, or they are not reachable via transitive dependency closure. |
| 143 | // But when possible, allowing Soong to calculate the manifest entries is less prone to errors and |
| 144 | // simplifies maintenance. For example, consider a situation when many apps use some static library |
| 145 | // that adds a new <uses-library> dependency -- all the apps will have to be updated. That is |
| 146 | // difficult to maintain. |
| 147 | // |
| 148 | // Soong computes the libraries that need to be in the manifest as the top-level libraries in CLC. |
| 149 | // These libraries are passed to the manifest_fixer. |
| 150 | // |
| 151 | // All libraries added to the manifest should be "shared" libraries, so that PackageManager can look |
| 152 | // up their dependencies and reconstruct the nested subcontexts at runtime. There is no build check |
| 153 | // to ensure this, it is an assumption. |
| 154 | // |
| 155 | // 5. Build system support |
| 156 | // ----------------------- |
| 157 | // |
| 158 | // In order to construct CLC for dexpreopt and manifest_fixer, the build system needs to know all |
| 159 | // <uses-library> dependencies of the dexpreopted library/app (including transitive dependencies). |
| 160 | // For each <uses-librarry> dependency it needs to know the following information: |
| 161 | // |
| 162 | // - the real name of the <uses-library> (it may be different from the module name) |
| 163 | // - build-time (on host) and run-time (on device) paths to the DEX jar file of the library |
| 164 | // - whether this library is optional or required |
| 165 | // - all <uses-library> dependencies |
| 166 | // |
| 167 | // Since the build system doesn't have access to the manifest contents (it cannot read manifests at |
| 168 | // the time of build rule generation), it is necessary to copy this information to the Android.bp |
| 169 | // and Android.mk files. For blueprints, the relevant properties are `uses_libs` and |
| 170 | // `optional_uses_libs`. For makefiles, relevant variables are `LOCAL_USES_LIBRARIES` and |
| 171 | // `LOCAL_OPTIONAL_USES_LIBRARIES`. It is preferable to avoid specifying these properties explicilty |
| 172 | // when they can be computed automatically by Soong (as the transitive closure of SDK library |
| 173 | // dependencies). |
| 174 | // |
| 175 | // Some of the Java libraries that are used as <uses-library> are not SDK libraries (they are |
| 176 | // defined as `java_library` rather than `java_sdk_library` in the Android.bp files). In order for |
| 177 | // the build system to handle them automatically like SDK libraries, it is possible to set a |
| 178 | // property `provides_uses_lib` or variable `LOCAL_PROVIDES_USES_LIBRARY` on the blueprint/makefile |
| 179 | // module of such library. This property can also be used to specify real library name in cases |
| 180 | // when it differs from the module name. |
| 181 | // |
| 182 | // Because the information from the manifests has to be duplicated in the Android.bp/Android.mk |
| 183 | // files, there is a danger that it may get out of sync. To guard against that, the build system |
| 184 | // generates a rule that checks the metadata in the build files against the contents of a manifest |
| 185 | // (verify_uses_libraries). The manifest can be available as a source file, or as part of a prebuilt |
| 186 | // APK. Note that reading the manifests at the Ninja stage of the build is fine, unlike the build |
| 187 | // rule generation phase. |
| 188 | // |
| 189 | // ClassLoaderContext is a structure that represents CLC. |
| 190 | // |
| 191 | type ClassLoaderContext struct { |
| 192 | // The name of the library. |
| 193 | Name string |
| 194 | |
| 195 | // On-host build path to the library dex file (used in dex2oat argument --class-loader-context). |
| 196 | Host android.Path |
| 197 | |
| 198 | // On-device install path (used in dex2oat argument --stored-class-loader-context). |
| 199 | Device string |
| 200 | |
| 201 | // Nested sub-CLC for dependencies. |
| 202 | Subcontexts []*ClassLoaderContext |
| 203 | } |
| 204 | |
| 205 | // ClassLoaderContextMap is a map from SDK version to CLC. There is a special entry with key |
| 206 | // AnySdkVersion that stores unconditional CLC that is added regardless of the target SDK version. |
| 207 | // |
| 208 | // Conditional CLC is for compatibility libraries which didn't exist prior to a certain SDK version |
| 209 | // (say, N), but classes in them were in the bootclasspath jars, etc., and in version N they have |
| 210 | // been separated into a standalone <uses-library>. Compatibility libraries should only be in the |
| 211 | // CLC if the library/app that uses them has `targetSdkVersion` less than N in the manifest. |
| 212 | // |
| 213 | // Currently only apps (but not libraries) use conditional CLC. |
| 214 | // |
| 215 | // Target SDK version information is unavailable to the build system at rule generation time, so |
| 216 | // the build system doesn't know whether conditional CLC is needed for a given app or not. So it |
| 217 | // generates a build rule that includes conditional CLC for all versions, extracts the target SDK |
| 218 | // version from the manifest, and filters the CLCs based on that version. Exact final CLC that is |
| 219 | // passed to dex2oat is unknown to the build system, and gets known only at Ninja stage. |
| 220 | // |
| 221 | type ClassLoaderContextMap map[int][]*ClassLoaderContext |
| 222 | |
| 223 | // Compatibility libraries. Some are optional, and some are required: this is the default that |
| 224 | // affects how they are handled by the Soong logic that automatically adds implicit SDK libraries |
| 225 | // to the manifest_fixer, but an explicit `uses_libs`/`optional_uses_libs` can override this. |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 226 | var OrgApacheHttpLegacy = "org.apache.http.legacy" |
| 227 | var AndroidTestBase = "android.test.base" |
| 228 | var AndroidTestMock = "android.test.mock" |
| 229 | var AndroidHidlBase = "android.hidl.base-V1.0-java" |
| 230 | var AndroidHidlManager = "android.hidl.manager-V1.0-java" |
| 231 | |
Ulya Trafimovich | 480d174 | 2020-11-20 15:30:03 +0000 | [diff] [blame] | 232 | // Compatibility libraries grouped by version/optionality (for convenience, to avoid repeating the |
| 233 | // same lists in multiple places). |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 234 | var OptionalCompatUsesLibs28 = []string{ |
| 235 | OrgApacheHttpLegacy, |
| 236 | } |
| 237 | var OptionalCompatUsesLibs30 = []string{ |
| 238 | AndroidTestBase, |
| 239 | AndroidTestMock, |
| 240 | } |
| 241 | var CompatUsesLibs29 = []string{ |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 242 | AndroidHidlManager, |
Ulya Trafimovich | c9f2b94 | 2020-12-23 15:41:29 +0000 | [diff] [blame] | 243 | AndroidHidlBase, |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 244 | } |
| 245 | var OptionalCompatUsesLibs = append(android.CopyOf(OptionalCompatUsesLibs28), OptionalCompatUsesLibs30...) |
| 246 | var CompatUsesLibs = android.CopyOf(CompatUsesLibs29) |
| 247 | |
| 248 | const UnknownInstallLibraryPath = "error" |
| 249 | |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 250 | // AnySdkVersion means that the class loader context is needed regardless of the targetSdkVersion |
| 251 | // of the app. The numeric value affects the key order in the map and, as a result, the order of |
| 252 | // arguments passed to construct_context.py (high value means that the unconditional context goes |
| 253 | // last). We use the converntional "current" SDK level (10000), but any big number would do as well. |
| 254 | const AnySdkVersion int = android.FutureApiLevelInt |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 255 | |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 256 | // Add class loader context for the given library to the map entry for the given SDK version. |
| 257 | func (clcMap ClassLoaderContextMap) addContext(ctx android.ModuleInstallPathContext, sdkVer int, lib string, |
Ulya Trafimovich | 7bc1cf5 | 2021-01-05 15:41:55 +0000 | [diff] [blame] | 258 | hostPath, installPath android.Path, nestedClcMap ClassLoaderContextMap) error { |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 259 | |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 260 | devicePath := UnknownInstallLibraryPath |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 261 | if installPath == nil { |
| 262 | if android.InList(lib, CompatUsesLibs) || android.InList(lib, OptionalCompatUsesLibs) { |
| 263 | // Assume that compatibility libraries are installed in /system/framework. |
| 264 | installPath = android.PathForModuleInstall(ctx, "framework", lib+".jar") |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 265 | } else { |
| 266 | // For some stub libraries the only known thing is the name of their implementation |
| 267 | // library, but the library itself is unavailable (missing or part of a prebuilt). In |
| 268 | // such cases we still need to add the library to <uses-library> tags in the manifest, |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 269 | // but we cannot use it for dexpreopt. |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 270 | } |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 271 | } |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 272 | if installPath != nil { |
| 273 | devicePath = android.InstallPathToOnDevicePath(ctx, installPath.(android.InstallPath)) |
| 274 | } |
| 275 | |
Ulya Trafimovich | 5e13a73 | 2020-11-03 15:33:03 +0000 | [diff] [blame] | 276 | // Nested class loader context shouldn't have conditional part (it is allowed only at the top level). |
| 277 | for ver, _ := range nestedClcMap { |
| 278 | if ver != AnySdkVersion { |
| 279 | clcStr, _ := ComputeClassLoaderContext(nestedClcMap) |
| 280 | return fmt.Errorf("nested class loader context shouldn't have conditional part: %s", clcStr) |
| 281 | } |
| 282 | } |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 283 | subcontexts := nestedClcMap[AnySdkVersion] |
| 284 | |
| 285 | // If the library with this name is already present as one of the unconditional top-level |
| 286 | // components, do not re-add it. |
| 287 | for _, clc := range clcMap[sdkVer] { |
| 288 | if clc.Name == lib { |
| 289 | return nil |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | clcMap[sdkVer] = append(clcMap[sdkVer], &ClassLoaderContext{ |
Ulya Trafimovich | 78a7155 | 2020-11-25 14:20:52 +0000 | [diff] [blame] | 294 | Name: lib, |
| 295 | Host: hostPath, |
| 296 | Device: devicePath, |
| 297 | Subcontexts: subcontexts, |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 298 | }) |
Ulya Trafimovich | 6961267 | 2020-10-20 17:41:54 +0100 | [diff] [blame] | 299 | return nil |
| 300 | } |
| 301 | |
Ulya Trafimovich | 88bb6f6 | 2020-12-16 16:16:11 +0000 | [diff] [blame] | 302 | // Add class loader context for the given SDK version. Don't fail on unknown build/install paths, as |
| 303 | // libraries with unknown paths still need to be processed by manifest_fixer (which doesn't care |
| 304 | // about paths). For the subset of libraries that are used in dexpreopt, their build/install paths |
| 305 | // are validated later before CLC is used (in validateClassLoaderContext). |
Ulya Trafimovich | 7bc1cf5 | 2021-01-05 15:41:55 +0000 | [diff] [blame] | 306 | func (clcMap ClassLoaderContextMap) AddContext(ctx android.ModuleInstallPathContext, sdkVer int, |
Ulya Trafimovich | 78a7155 | 2020-11-25 14:20:52 +0000 | [diff] [blame] | 307 | lib string, hostPath, installPath android.Path, nestedClcMap ClassLoaderContextMap) { |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 308 | |
Ulya Trafimovich | 7bc1cf5 | 2021-01-05 15:41:55 +0000 | [diff] [blame] | 309 | err := clcMap.addContext(ctx, sdkVer, lib, hostPath, installPath, nestedClcMap) |
| 310 | if err != nil { |
| 311 | ctx.ModuleErrorf(err.Error()) |
| 312 | } |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 313 | } |
| 314 | |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 315 | // Merge the other class loader context map into this one, do not override existing entries. |
Ulya Trafimovich | 1855424 | 2020-11-03 15:55:11 +0000 | [diff] [blame] | 316 | // The implicitRootLib parameter is the name of the library for which the other class loader |
| 317 | // context map was constructed. If the implicitRootLib is itself a <uses-library>, it should be |
| 318 | // already present in the class loader context (with the other context as its subcontext) -- in |
| 319 | // that case do not re-add the other context. Otherwise add the other context at the top-level. |
| 320 | func (clcMap ClassLoaderContextMap) AddContextMap(otherClcMap ClassLoaderContextMap, implicitRootLib string) { |
| 321 | if otherClcMap == nil { |
| 322 | return |
| 323 | } |
| 324 | |
| 325 | // If the implicit root of the merged map is already present as one of top-level subtrees, do |
| 326 | // not merge it second time. |
| 327 | for _, clc := range clcMap[AnySdkVersion] { |
| 328 | if clc.Name == implicitRootLib { |
| 329 | return |
| 330 | } |
| 331 | } |
| 332 | |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 333 | for sdkVer, otherClcs := range otherClcMap { |
| 334 | for _, otherClc := range otherClcs { |
| 335 | alreadyHave := false |
| 336 | for _, clc := range clcMap[sdkVer] { |
| 337 | if clc.Name == otherClc.Name { |
| 338 | alreadyHave = true |
| 339 | break |
| 340 | } |
| 341 | } |
| 342 | if !alreadyHave { |
| 343 | clcMap[sdkVer] = append(clcMap[sdkVer], otherClc) |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 344 | } |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 345 | } |
| 346 | } |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 347 | } |
| 348 | |
Ulya Trafimovich | 78a7155 | 2020-11-25 14:20:52 +0000 | [diff] [blame] | 349 | // Returns top-level libraries in the CLC (conditional CLC, i.e. compatibility libraries are not |
| 350 | // included). This is the list of libraries that should be in the <uses-library> tags in the |
| 351 | // manifest. Some of them may be present in the source manifest, others are added by manifest_fixer. |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 352 | func (clcMap ClassLoaderContextMap) UsesLibs() (ulibs []string) { |
| 353 | if clcMap != nil { |
Ulya Trafimovich | 78a7155 | 2020-11-25 14:20:52 +0000 | [diff] [blame] | 354 | clcs := clcMap[AnySdkVersion] |
| 355 | ulibs = make([]string, 0, len(clcs)) |
| 356 | for _, clc := range clcs { |
| 357 | ulibs = append(ulibs, clc.Name) |
Ulya Trafimovich | a8c28e2 | 2020-10-06 17:24:19 +0100 | [diff] [blame] | 358 | } |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 359 | } |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 360 | return ulibs |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 361 | } |
| 362 | |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 363 | // Now that the full unconditional context is known, reconstruct conditional context. |
| 364 | // Apply filters for individual libraries, mirroring what the PackageManager does when it |
| 365 | // constructs class loader context on device. |
| 366 | // |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 367 | // TODO(b/132357300): remove "android.hidl.manager" and "android.hidl.base" for non-system apps. |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 368 | // |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 369 | func fixClassLoaderContext(clcMap ClassLoaderContextMap) { |
| 370 | usesLibs := clcMap.UsesLibs() |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 371 | |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 372 | for sdkVer, clcs := range clcMap { |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 373 | if sdkVer == AnySdkVersion { |
| 374 | continue |
| 375 | } |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 376 | fixedClcs := []*ClassLoaderContext{} |
| 377 | for _, clc := range clcs { |
| 378 | if android.InList(clc.Name, usesLibs) { |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 379 | // skip compatibility libraries that are already included in unconditional context |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 380 | } else if clc.Name == AndroidTestMock && !android.InList("android.test.runner", usesLibs) { |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 381 | // android.test.mock is only needed as a compatibility library (in conditional class |
| 382 | // loader context) if android.test.runner is used, otherwise skip it |
| 383 | } else { |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 384 | fixedClcs = append(fixedClcs, clc) |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 385 | } |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 386 | clcMap[sdkVer] = fixedClcs |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 387 | } |
| 388 | } |
| 389 | } |
| 390 | |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 391 | // Return true if all build/install library paths are valid (including recursive subcontexts), |
| 392 | // otherwise return false. A build path is valid if it's not nil. An install path is valid if it's |
| 393 | // not equal to a special "error" value. |
| 394 | func validateClassLoaderContext(clcMap ClassLoaderContextMap) (bool, error) { |
| 395 | for sdkVer, clcs := range clcMap { |
| 396 | if valid, err := validateClassLoaderContextRec(sdkVer, clcs); !valid || err != nil { |
| 397 | return valid, err |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 398 | } |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 399 | } |
| 400 | return true, nil |
| 401 | } |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 402 | |
Ulya Trafimovich | 480d174 | 2020-11-20 15:30:03 +0000 | [diff] [blame] | 403 | // Helper function for validateClassLoaderContext() that handles recursion. |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 404 | func validateClassLoaderContextRec(sdkVer int, clcs []*ClassLoaderContext) (bool, error) { |
| 405 | for _, clc := range clcs { |
| 406 | if clc.Host == nil || clc.Device == UnknownInstallLibraryPath { |
| 407 | if sdkVer == AnySdkVersion { |
| 408 | // Return error if dexpreopt doesn't know paths to one of the <uses-library> |
| 409 | // dependencies. In the future we may need to relax this and just disable dexpreopt. |
Ulya Trafimovich | 78210f6 | 2020-12-02 13:06:47 +0000 | [diff] [blame] | 410 | if clc.Host == nil { |
| 411 | return false, fmt.Errorf("invalid build path for <uses-library> \"%s\"", clc.Name) |
| 412 | } else { |
| 413 | return false, fmt.Errorf("invalid install path for <uses-library> \"%s\"", clc.Name) |
| 414 | } |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 415 | } else { |
| 416 | // No error for compatibility libraries, as Soong doesn't know if they are needed |
| 417 | // (this depends on the targetSdkVersion in the manifest), but the CLC is invalid. |
| 418 | return false, nil |
| 419 | } |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 420 | } |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 421 | if valid, err := validateClassLoaderContextRec(sdkVer, clc.Subcontexts); !valid || err != nil { |
| 422 | return valid, err |
| 423 | } |
| 424 | } |
| 425 | return true, nil |
| 426 | } |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 427 | |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 428 | // Return the class loader context as a string, and a slice of build paths for all dependencies. |
| 429 | // Perform a depth-first preorder traversal of the class loader context tree for each SDK version. |
| 430 | // Return the resulting string and a slice of on-host build paths to all library dependencies. |
| 431 | func ComputeClassLoaderContext(clcMap ClassLoaderContextMap) (clcStr string, paths android.Paths) { |
Ulya Trafimovich | c9f2b94 | 2020-12-23 15:41:29 +0000 | [diff] [blame] | 432 | // CLC for different SDK versions should come in specific order that agrees with PackageManager. |
| 433 | // Since PackageManager processes SDK versions in ascending order and prepends compatibility |
| 434 | // libraries at the front, the required order is descending, except for AnySdkVersion that has |
| 435 | // numerically the largest order, but must be the last one. Example of correct order: [30, 29, |
| 436 | // 28, AnySdkVersion]. There are Soong tests to ensure that someone doesn't change this by |
| 437 | // accident, but there is no way to guard against changes in the PackageManager, except for |
| 438 | // grepping logcat on the first boot for absence of the following messages: |
| 439 | // |
| 440 | // `logcat | grep -E 'ClassLoaderContext [a-z ]+ mismatch` |
| 441 | // |
| 442 | versions := make([]int, 0, len(clcMap)) |
| 443 | for ver, _ := range clcMap { |
| 444 | if ver != AnySdkVersion { |
| 445 | versions = append(versions, ver) |
| 446 | } |
| 447 | } |
| 448 | sort.Sort(sort.Reverse(sort.IntSlice(versions))) // descending order |
| 449 | versions = append(versions, AnySdkVersion) |
| 450 | |
| 451 | for _, sdkVer := range versions { |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 452 | sdkVerStr := fmt.Sprintf("%d", sdkVer) |
| 453 | if sdkVer == AnySdkVersion { |
| 454 | sdkVerStr = "any" // a special keyword that means any SDK version |
| 455 | } |
| 456 | hostClc, targetClc, hostPaths := computeClassLoaderContextRec(clcMap[sdkVer]) |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 457 | if hostPaths != nil { |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 458 | clcStr += fmt.Sprintf(" --host-context-for-sdk %s %s", sdkVerStr, hostClc) |
| 459 | clcStr += fmt.Sprintf(" --target-context-for-sdk %s %s", sdkVerStr, targetClc) |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 460 | } |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 461 | paths = append(paths, hostPaths...) |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 462 | } |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 463 | return clcStr, android.FirstUniquePaths(paths) |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 464 | } |
| 465 | |
Ulya Trafimovich | 480d174 | 2020-11-20 15:30:03 +0000 | [diff] [blame] | 466 | // Helper function for ComputeClassLoaderContext() that handles recursion. |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 467 | func computeClassLoaderContextRec(clcs []*ClassLoaderContext) (string, string, android.Paths) { |
| 468 | var paths android.Paths |
| 469 | var clcsHost, clcsTarget []string |
| 470 | |
| 471 | for _, clc := range clcs { |
| 472 | subClcHost, subClcTarget, subPaths := computeClassLoaderContextRec(clc.Subcontexts) |
| 473 | if subPaths != nil { |
| 474 | subClcHost = "{" + subClcHost + "}" |
| 475 | subClcTarget = "{" + subClcTarget + "}" |
| 476 | } |
| 477 | |
| 478 | clcsHost = append(clcsHost, "PCL["+clc.Host.String()+"]"+subClcHost) |
| 479 | clcsTarget = append(clcsTarget, "PCL["+clc.Device+"]"+subClcTarget) |
| 480 | |
| 481 | paths = append(paths, clc.Host) |
| 482 | paths = append(paths, subPaths...) |
| 483 | } |
| 484 | |
| 485 | clcHost := strings.Join(clcsHost, "#") |
| 486 | clcTarget := strings.Join(clcsTarget, "#") |
| 487 | |
| 488 | return clcHost, clcTarget, paths |
| 489 | } |
| 490 | |
Ulya Trafimovich | 5ec6889 | 2020-12-08 17:52:34 +0000 | [diff] [blame] | 491 | // Class loader contexts that come from Make via JSON dexpreopt.config. JSON CLC representation is |
Ulya Trafimovich | 65556a8 | 2021-02-11 16:48:53 +0000 | [diff] [blame^] | 492 | // the same as Soong representation except that SDK versions and paths are represented with strings. |
Ulya Trafimovich | 5ec6889 | 2020-12-08 17:52:34 +0000 | [diff] [blame] | 493 | type jsonClassLoaderContext struct { |
Ulya Trafimovich | 65556a8 | 2021-02-11 16:48:53 +0000 | [diff] [blame^] | 494 | Name string |
Ulya Trafimovich | 5ec6889 | 2020-12-08 17:52:34 +0000 | [diff] [blame] | 495 | Host string |
| 496 | Device string |
Ulya Trafimovich | 65556a8 | 2021-02-11 16:48:53 +0000 | [diff] [blame^] | 497 | Subcontexts []*jsonClassLoaderContext |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 498 | } |
| 499 | |
Ulya Trafimovich | 5ec6889 | 2020-12-08 17:52:34 +0000 | [diff] [blame] | 500 | // A map from SDK version (represented with a JSON string) to JSON CLCs. |
Ulya Trafimovich | 65556a8 | 2021-02-11 16:48:53 +0000 | [diff] [blame^] | 501 | type jsonClassLoaderContextMap map[string][]*jsonClassLoaderContext |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 502 | |
Ulya Trafimovich | 5ec6889 | 2020-12-08 17:52:34 +0000 | [diff] [blame] | 503 | // Convert JSON CLC map to Soong represenation. |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 504 | func fromJsonClassLoaderContext(ctx android.PathContext, jClcMap jsonClassLoaderContextMap) ClassLoaderContextMap { |
| 505 | clcMap := make(ClassLoaderContextMap) |
Ulya Trafimovich | 5ec6889 | 2020-12-08 17:52:34 +0000 | [diff] [blame] | 506 | for sdkVerStr, clcs := range jClcMap { |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 507 | sdkVer, ok := strconv.Atoi(sdkVerStr) |
| 508 | if ok != nil { |
| 509 | if sdkVerStr == "any" { |
| 510 | sdkVer = AnySdkVersion |
| 511 | } else { |
| 512 | android.ReportPathErrorf(ctx, "failed to parse SDK version in dexpreopt.config: '%s'", sdkVerStr) |
| 513 | } |
| 514 | } |
Ulya Trafimovich | 5ec6889 | 2020-12-08 17:52:34 +0000 | [diff] [blame] | 515 | clcMap[sdkVer] = fromJsonClassLoaderContextRec(ctx, clcs) |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 516 | } |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 517 | return clcMap |
Ulya Trafimovich | eb26886 | 2020-10-20 15:16:38 +0100 | [diff] [blame] | 518 | } |
Ulya Trafimovich | 5ec6889 | 2020-12-08 17:52:34 +0000 | [diff] [blame] | 519 | |
| 520 | // Recursive helper for fromJsonClassLoaderContext. |
Ulya Trafimovich | 65556a8 | 2021-02-11 16:48:53 +0000 | [diff] [blame^] | 521 | func fromJsonClassLoaderContextRec(ctx android.PathContext, jClcs []*jsonClassLoaderContext) []*ClassLoaderContext { |
Ulya Trafimovich | 5ec6889 | 2020-12-08 17:52:34 +0000 | [diff] [blame] | 522 | clcs := make([]*ClassLoaderContext, 0, len(jClcs)) |
Ulya Trafimovich | 65556a8 | 2021-02-11 16:48:53 +0000 | [diff] [blame^] | 523 | for _, clc := range jClcs { |
Ulya Trafimovich | 5ec6889 | 2020-12-08 17:52:34 +0000 | [diff] [blame] | 524 | clcs = append(clcs, &ClassLoaderContext{ |
Ulya Trafimovich | 65556a8 | 2021-02-11 16:48:53 +0000 | [diff] [blame^] | 525 | Name: clc.Name, |
Ulya Trafimovich | 5ec6889 | 2020-12-08 17:52:34 +0000 | [diff] [blame] | 526 | Host: constructPath(ctx, clc.Host), |
| 527 | Device: clc.Device, |
| 528 | Subcontexts: fromJsonClassLoaderContextRec(ctx, clc.Subcontexts), |
| 529 | }) |
| 530 | } |
| 531 | return clcs |
| 532 | } |
Ulya Trafimovich | 76b0852 | 2021-01-14 17:52:43 +0000 | [diff] [blame] | 533 | |
| 534 | // Convert Soong CLC map to JSON representation for Make. |
| 535 | func toJsonClassLoaderContext(clcMap ClassLoaderContextMap) jsonClassLoaderContextMap { |
| 536 | jClcMap := make(jsonClassLoaderContextMap) |
| 537 | for sdkVer, clcs := range clcMap { |
| 538 | sdkVerStr := fmt.Sprintf("%d", sdkVer) |
| 539 | jClcMap[sdkVerStr] = toJsonClassLoaderContextRec(clcs) |
| 540 | } |
| 541 | return jClcMap |
| 542 | } |
| 543 | |
| 544 | // Recursive helper for toJsonClassLoaderContext. |
Ulya Trafimovich | 65556a8 | 2021-02-11 16:48:53 +0000 | [diff] [blame^] | 545 | func toJsonClassLoaderContextRec(clcs []*ClassLoaderContext) []*jsonClassLoaderContext { |
| 546 | jClcs := make([]*jsonClassLoaderContext, len(clcs)) |
Ulya Trafimovich | 76b0852 | 2021-01-14 17:52:43 +0000 | [diff] [blame] | 547 | for _, clc := range clcs { |
Ulya Trafimovich | 65556a8 | 2021-02-11 16:48:53 +0000 | [diff] [blame^] | 548 | jClcs = append(jClcs, &jsonClassLoaderContext{ |
| 549 | Name: clc.Name, |
Ulya Trafimovich | 76b0852 | 2021-01-14 17:52:43 +0000 | [diff] [blame] | 550 | Host: clc.Host.String(), |
| 551 | Device: clc.Device, |
| 552 | Subcontexts: toJsonClassLoaderContextRec(clc.Subcontexts), |
Ulya Trafimovich | 65556a8 | 2021-02-11 16:48:53 +0000 | [diff] [blame^] | 553 | }) |
Ulya Trafimovich | 76b0852 | 2021-01-14 17:52:43 +0000 | [diff] [blame] | 554 | } |
| 555 | return jClcs |
| 556 | } |