blob: 1204dbb9721cb30b04025f8b753fe4428580b8bd [file] [log] [blame]
Jiyong Park09d77522019-11-18 11:16:27 +09001// Copyright (C) 2019 The Android Open Source Project
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
15package apex
16
17import (
Jiyong Parkbd159612020-02-28 15:22:21 +090018 "encoding/json"
Jiyong Park09d77522019-11-18 11:16:27 +090019 "fmt"
20 "path/filepath"
21 "runtime"
22 "sort"
Nikita Ioffe5335bc42020-10-20 00:02:15 +010023 "strconv"
Jiyong Park09d77522019-11-18 11:16:27 +090024 "strings"
25
26 "android/soong/android"
27 "android/soong/java"
28
29 "github.com/google/blueprint"
30 "github.com/google/blueprint/proptools"
31)
32
33var (
34 pctx = android.NewPackageContext("android/apex")
35)
36
37func init() {
38 pctx.Import("android/soong/android")
sophiezc80a2b32020-11-12 16:39:19 +000039 pctx.Import("android/soong/cc/config")
Jiyong Park09d77522019-11-18 11:16:27 +090040 pctx.Import("android/soong/java")
41 pctx.HostBinToolVariable("apexer", "apexer")
Dennis Shenaf41bc12022-08-03 16:46:43 +000042 pctx.HostBinToolVariable("apexer_with_DCLA_preprocessing", "apexer_with_DCLA_preprocessing")
Dennis Shene2ed70c2023-01-11 14:15:43 +000043 pctx.HostBinToolVariable("apexer_with_trim_preprocessing", "apexer_with_trim_preprocessing")
44
Jiyong Park09d77522019-11-18 11:16:27 +090045 // ART minimal builds (using the master-art manifest) do not have the "frameworks/base"
Jiyong Parkb81b9902020-11-24 19:51:18 +090046 // projects, and hence cannot build 'aapt2'. Use the SDK prebuilt instead.
Jiyong Park09d77522019-11-18 11:16:27 +090047 hostBinToolVariableWithPrebuilt := func(name, prebuiltDir, tool string) {
48 pctx.VariableFunc(name, func(ctx android.PackageVarContext) string {
49 if !ctx.Config().FrameworksBaseDirExists(ctx) {
50 return filepath.Join(prebuiltDir, runtime.GOOS, "bin", tool)
51 } else {
Martin Stjernholm7260d062019-12-09 21:47:14 +000052 return ctx.Config().HostToolPath(ctx, tool).String()
Jiyong Park09d77522019-11-18 11:16:27 +090053 }
54 })
55 }
56 hostBinToolVariableWithPrebuilt("aapt2", "prebuilts/sdk/tools", "aapt2")
57 pctx.HostBinToolVariable("avbtool", "avbtool")
58 pctx.HostBinToolVariable("e2fsdroid", "e2fsdroid")
59 pctx.HostBinToolVariable("merge_zips", "merge_zips")
60 pctx.HostBinToolVariable("mke2fs", "mke2fs")
61 pctx.HostBinToolVariable("resize2fs", "resize2fs")
62 pctx.HostBinToolVariable("sefcontext_compile", "sefcontext_compile")
63 pctx.HostBinToolVariable("soong_zip", "soong_zip")
64 pctx.HostBinToolVariable("zip2zip", "zip2zip")
65 pctx.HostBinToolVariable("zipalign", "zipalign")
66 pctx.HostBinToolVariable("jsonmodify", "jsonmodify")
67 pctx.HostBinToolVariable("conv_apex_manifest", "conv_apex_manifest")
Jaewoong Jungfa00c062020-05-14 14:15:24 -070068 pctx.HostBinToolVariable("extract_apks", "extract_apks")
Theotime Combes4ba38c12020-06-12 12:46:59 +000069 pctx.HostBinToolVariable("make_f2fs", "make_f2fs")
70 pctx.HostBinToolVariable("sload_f2fs", "sload_f2fs")
Huang Jianan13cac632021-08-02 15:02:17 +080071 pctx.HostBinToolVariable("make_erofs", "make_erofs")
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +000072 pctx.HostBinToolVariable("apex_compression_tool", "apex_compression_tool")
sophiez02347372021-11-02 17:58:02 -070073 pctx.HostBinToolVariable("dexdeps", "dexdeps")
Jooyung Han01f5d652023-04-05 16:29:26 +090074 pctx.HostBinToolVariable("apex_sepolicy_tests", "apex_sepolicy_tests")
75 pctx.HostBinToolVariable("deapexer", "deapexer")
76 pctx.HostBinToolVariable("debugfs_static", "debugfs_static")
sophiezc80a2b32020-11-12 16:39:19 +000077 pctx.SourcePathVariable("genNdkUsedbyApexPath", "build/soong/scripts/gen_ndk_usedby_apex.sh")
Jooyung Han4bc10262023-09-08 11:51:45 +090078 pctx.HostBinToolVariable("conv_linker_config", "conv_linker_config")
Jooyung Hane6154412023-09-08 15:25:59 +090079 pctx.HostBinToolVariable("assemble_vintf", "assemble_vintf")
Jiyong Park09d77522019-11-18 11:16:27 +090080}
81
82var (
Jiyong Park09d77522019-11-18 11:16:27 +090083 apexManifestRule = pctx.StaticRule("apexManifestRule", blueprint.RuleParams{
84 Command: `rm -f $out && ${jsonmodify} $in ` +
85 `-a provideNativeLibs ${provideNativeLibs} ` +
86 `-a requireNativeLibs ${requireNativeLibs} ` +
Alexei Nicoarad887e242022-07-11 14:16:28 +010087 `-se version 0 ${default_version} ` +
Jiyong Park09d77522019-11-18 11:16:27 +090088 `${opt} ` +
89 `-o $out`,
90 CommandDeps: []string{"${jsonmodify}"},
91 Description: "prepare ${out}",
Alexei Nicoarad887e242022-07-11 14:16:28 +010092 }, "provideNativeLibs", "requireNativeLibs", "default_version", "opt")
Jiyong Park09d77522019-11-18 11:16:27 +090093
94 stripApexManifestRule = pctx.StaticRule("stripApexManifestRule", blueprint.RuleParams{
95 Command: `rm -f $out && ${conv_apex_manifest} strip $in -o $out`,
96 CommandDeps: []string{"${conv_apex_manifest}"},
97 Description: "strip ${in}=>${out}",
98 })
99
100 pbApexManifestRule = pctx.StaticRule("pbApexManifestRule", blueprint.RuleParams{
101 Command: `rm -f $out && ${conv_apex_manifest} proto $in -o $out`,
102 CommandDeps: []string{"${conv_apex_manifest}"},
103 Description: "convert ${in}=>${out}",
104 })
105
Joe Onoratob4638c12021-10-27 15:47:06 -0700106 // TODO(b/113233103): make sure that file_contexts is as expected, i.e., validate
Jiyong Park09d77522019-11-18 11:16:27 +0900107 // against the binary policy using sefcontext_compiler -p <policy>.
108
109 // TODO(b/114327326): automate the generation of file_contexts
110 apexRule = pctx.StaticRule("apexRule", blueprint.RuleParams{
111 Command: `rm -rf ${image_dir} && mkdir -p ${image_dir} && ` +
112 `(. ${out}.copy_commands) && ` +
113 `APEXER_TOOL_PATH=${tool_path} ` +
114 `${apexer} --force --manifest ${manifest} ` +
Jiyong Park09d77522019-11-18 11:16:27 +0900115 `--file_contexts ${file_contexts} ` +
116 `--canned_fs_config ${canned_fs_config} ` +
Dario Freni0f4ae072020-01-02 15:24:12 +0000117 `--include_build_info ` +
Jiyong Park09d77522019-11-18 11:16:27 +0900118 `--payload_type image ` +
Oriol Prieto Gasco17e22902022-05-05 13:52:25 +0000119 `--key ${key} ${opt_flags} ${image_dir} ${out} `,
Jiyong Park09d77522019-11-18 11:16:27 +0900120 CommandDeps: []string{"${apexer}", "${avbtool}", "${e2fsdroid}", "${merge_zips}",
Huang Jianan13cac632021-08-02 15:02:17 +0800121 "${mke2fs}", "${resize2fs}", "${sefcontext_compile}", "${make_f2fs}", "${sload_f2fs}", "${make_erofs}",
Jiyong Park09d77522019-11-18 11:16:27 +0900122 "${soong_zip}", "${zipalign}", "${aapt2}", "prebuilts/sdk/current/public/android.jar"},
123 Rspfile: "${out}.copy_commands",
124 RspfileContent: "${copy_commands}",
125 Description: "APEX ${image_dir} => ${out}",
Dennis Shenaf41bc12022-08-03 16:46:43 +0000126 }, "tool_path", "image_dir", "copy_commands", "file_contexts", "canned_fs_config", "key",
127 "opt_flags", "manifest")
128
129 DCLAApexRule = pctx.StaticRule("DCLAApexRule", blueprint.RuleParams{
130 Command: `rm -rf ${image_dir} && mkdir -p ${image_dir} && ` +
131 `(. ${out}.copy_commands) && ` +
132 `APEXER_TOOL_PATH=${tool_path} ` +
133 `${apexer_with_DCLA_preprocessing} ` +
134 `--apexer ${apexer} ` +
135 `--canned_fs_config ${canned_fs_config} ` +
136 `${image_dir} ` +
137 `${out} ` +
138 `-- ` +
139 `--include_build_info ` +
140 `--force ` +
141 `--payload_type image ` +
142 `--key ${key} ` +
143 `--file_contexts ${file_contexts} ` +
144 `--manifest ${manifest} ` +
145 `${opt_flags} `,
146 CommandDeps: []string{"${apexer_with_DCLA_preprocessing}", "${apexer}", "${avbtool}", "${e2fsdroid}",
147 "${merge_zips}", "${mke2fs}", "${resize2fs}", "${sefcontext_compile}", "${make_f2fs}",
148 "${sload_f2fs}", "${make_erofs}", "${soong_zip}", "${zipalign}", "${aapt2}",
149 "prebuilts/sdk/current/public/android.jar"},
150 Rspfile: "${out}.copy_commands",
151 RspfileContent: "${copy_commands}",
152 Description: "APEX ${image_dir} => ${out}",
153 }, "tool_path", "image_dir", "copy_commands", "file_contexts", "canned_fs_config", "key",
154 "opt_flags", "manifest", "is_DCLA")
Jiyong Park09d77522019-11-18 11:16:27 +0900155
Dennis Shene2ed70c2023-01-11 14:15:43 +0000156 TrimmedApexRule = pctx.StaticRule("TrimmedApexRule", blueprint.RuleParams{
157 Command: `rm -rf ${image_dir} && mkdir -p ${image_dir} && ` +
158 `(. ${out}.copy_commands) && ` +
159 `APEXER_TOOL_PATH=${tool_path} ` +
160 `${apexer_with_trim_preprocessing} ` +
161 `--apexer ${apexer} ` +
162 `--canned_fs_config ${canned_fs_config} ` +
163 `--manifest ${manifest} ` +
164 `--libs_to_trim ${libs_to_trim} ` +
165 `${image_dir} ` +
166 `${out} ` +
167 `-- ` +
168 `--include_build_info ` +
169 `--force ` +
170 `--payload_type image ` +
171 `--key ${key} ` +
172 `--file_contexts ${file_contexts} ` +
173 `${opt_flags} `,
174 CommandDeps: []string{"${apexer_with_trim_preprocessing}", "${apexer}", "${avbtool}", "${e2fsdroid}",
175 "${merge_zips}", "${mke2fs}", "${resize2fs}", "${sefcontext_compile}", "${make_f2fs}",
176 "${sload_f2fs}", "${make_erofs}", "${soong_zip}", "${zipalign}", "${aapt2}",
177 "prebuilts/sdk/current/public/android.jar"},
178 Rspfile: "${out}.copy_commands",
179 RspfileContent: "${copy_commands}",
180 Description: "APEX ${image_dir} => ${out}",
181 }, "tool_path", "image_dir", "copy_commands", "file_contexts", "canned_fs_config", "key",
182 "opt_flags", "manifest", "libs_to_trim")
183
Jiyong Park09d77522019-11-18 11:16:27 +0900184 apexProtoConvertRule = pctx.AndroidStaticRule("apexProtoConvertRule",
185 blueprint.RuleParams{
186 Command: `${aapt2} convert --output-format proto $in -o $out`,
187 CommandDeps: []string{"${aapt2}"},
188 })
189
190 apexBundleRule = pctx.StaticRule("apexBundleRule", blueprint.RuleParams{
Jiyong Parkbd159612020-02-28 15:22:21 +0900191 Command: `${zip2zip} -i $in -o $out.base ` +
Jiyong Park09d77522019-11-18 11:16:27 +0900192 `apex_payload.img:apex/${abi}.img ` +
Dario Frenida1aefe2020-03-02 21:47:09 +0000193 `apex_build_info.pb:apex/${abi}.build_info.pb ` +
Jiyong Park09d77522019-11-18 11:16:27 +0900194 `apex_manifest.json:root/apex_manifest.json ` +
Jiyong Park53ae3342019-12-08 02:06:24 +0900195 `apex_manifest.pb:root/apex_manifest.pb ` +
Jiyong Park09d77522019-11-18 11:16:27 +0900196 `AndroidManifest.xml:manifest/AndroidManifest.xml ` +
Jiyong Parkbd159612020-02-28 15:22:21 +0900197 `assets/NOTICE.html.gz:assets/NOTICE.html.gz &&` +
198 `${soong_zip} -o $out.config -C $$(dirname ${config}) -f ${config} && ` +
199 `${merge_zips} $out $out.base $out.config`,
200 CommandDeps: []string{"${zip2zip}", "${soong_zip}", "${merge_zips}"},
Jiyong Park09d77522019-11-18 11:16:27 +0900201 Description: "app bundle",
Jiyong Parkbd159612020-02-28 15:22:21 +0900202 }, "abi", "config")
Jiyong Park09d77522019-11-18 11:16:27 +0900203
Jiyong Park09d77522019-11-18 11:16:27 +0900204 diffApexContentRule = pctx.StaticRule("diffApexContentRule", blueprint.RuleParams{
205 Command: `diff --unchanged-group-format='' \` +
206 `--changed-group-format='%<' \` +
Colin Cross440e0d02020-06-11 11:32:11 -0700207 `${image_content_file} ${allowed_files_file} || (` +
Jiyong Park09d77522019-11-18 11:16:27 +0900208 `echo -e "New unexpected files were added to ${apex_module_name}." ` +
209 ` "To fix the build run following command:" && ` +
Colin Cross440e0d02020-06-11 11:32:11 -0700210 `echo "system/apex/tools/update_allowed_list.sh ${allowed_files_file} ${image_content_file}" && ` +
Dan Willemsen81e43c52020-01-28 15:40:19 -0800211 `exit 1); touch ${out}`,
Colin Cross440e0d02020-06-11 11:32:11 -0700212 Description: "Diff ${image_content_file} and ${allowed_files_file}",
213 }, "image_content_file", "allowed_files_file", "apex_module_name")
Jiyong Parkb81b9902020-11-24 19:51:18 +0900214
sophiezc80a2b32020-11-12 16:39:19 +0000215 generateAPIsUsedbyApexRule = pctx.StaticRule("generateAPIsUsedbyApexRule", blueprint.RuleParams{
216 Command: "$genNdkUsedbyApexPath ${image_dir} ${readelf} ${out}",
217 CommandDeps: []string{"${genNdkUsedbyApexPath}"},
218 Description: "Generate symbol list used by Apex",
219 }, "image_dir", "readelf")
220
Jooyung Han01f5d652023-04-05 16:29:26 +0900221 apexSepolicyTestsRule = pctx.StaticRule("apexSepolicyTestsRule", blueprint.RuleParams{
222 Command: `${deapexer} --debugfs_path ${debugfs_static} list -Z ${in} > ${out}.fc` +
Jooyung Hanb7cdbba2023-04-26 14:42:50 +0900223 ` && ${apex_sepolicy_tests} -f ${out}.fc && touch ${out}`,
Jooyung Han01f5d652023-04-05 16:29:26 +0900224 CommandDeps: []string{"${apex_sepolicy_tests}", "${deapexer}", "${debugfs_static}"},
225 Description: "run apex_sepolicy_tests",
226 })
Jooyung Han4bc10262023-09-08 11:51:45 +0900227
228 apexLinkerconfigValidationRule = pctx.StaticRule("apexLinkerconfigValidationRule", blueprint.RuleParams{
229 Command: `${conv_linker_config} validate --type apex ${image_dir} && touch ${out}`,
230 CommandDeps: []string{"${conv_linker_config}"},
231 Description: "run apex_linkerconfig_validation",
232 }, "image_dir")
Jooyung Hane6154412023-09-08 15:25:59 +0900233
234 apexVintfFragmentsValidationRule = pctx.StaticRule("apexVintfFragmentsValidationRule", blueprint.RuleParams{
235 Command: `/bin/bash -c '(shopt -s nullglob; for f in ${image_dir}/etc/vintf/*.xml; do VINTF_IGNORE_TARGET_FCM_VERSION=true ${assemble_vintf} -i "$$f" > /dev/null; done)' && touch ${out}`,
236 CommandDeps: []string{"${assemble_vintf}"},
237 Description: "run apex_vintf_validation",
238 }, "image_dir")
Jiyong Park09d77522019-11-18 11:16:27 +0900239)
240
Jiyong Parkb81b9902020-11-24 19:51:18 +0900241// buildManifest creates buile rules to modify the input apex_manifest.json to add information
242// gathered by the build system such as provided/required native libraries. Two output files having
243// different formats are generated. a.manifestJsonOut is JSON format for Q devices, and
244// a.manifest.PbOut is protobuf format for R+ devices.
245// TODO(jiyong): make this to return paths instead of directly storing the paths to apexBundle
Jiyong Park09d77522019-11-18 11:16:27 +0900246func (a *apexBundle) buildManifest(ctx android.ModuleContext, provideNativeLibs, requireNativeLibs []string) {
Jiyong Parkb81b9902020-11-24 19:51:18 +0900247 src := android.PathForModuleSrc(ctx, proptools.StringDefault(a.properties.Manifest, "apex_manifest.json"))
Jiyong Park09d77522019-11-18 11:16:27 +0900248
Jiyong Parkb81b9902020-11-24 19:51:18 +0900249 // Put dependency({provide|require}NativeLibs) in apex_manifest.json
Jiyong Park09d77522019-11-18 11:16:27 +0900250 provideNativeLibs = android.SortedUniqueStrings(provideNativeLibs)
251 requireNativeLibs = android.SortedUniqueStrings(android.RemoveListFromList(requireNativeLibs, provideNativeLibs))
252
Jooyung Han2cd2f9a2023-02-06 18:29:08 +0900253 // VNDK APEX name is determined at runtime, so update "name" in apex_manifest
Jiyong Park09d77522019-11-18 11:16:27 +0900254 optCommands := []string{}
Jooyung Han2cd2f9a2023-02-06 18:29:08 +0900255 if a.vndkApex {
256 apexName := vndkApexNamePrefix + a.vndkVersion(ctx.DeviceConfig())
257 optCommands = append(optCommands, "-v name "+apexName)
Jiyong Park09d77522019-11-18 11:16:27 +0900258 }
259
Jiyong Parkb81b9902020-11-24 19:51:18 +0900260 // Collect jniLibs. Notice that a.filesInfo is already sorted
Jooyung Han643adc42020-02-27 13:50:06 +0900261 var jniLibs []string
262 for _, fi := range a.filesInfo {
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900263 if fi.isJniLib && !android.InList(fi.stem(), jniLibs) {
264 jniLibs = append(jniLibs, fi.stem())
Jooyung Han643adc42020-02-27 13:50:06 +0900265 }
266 }
267 if len(jniLibs) > 0 {
268 optCommands = append(optCommands, "-a jniLibs "+strings.Join(jniLibs, " "))
269 }
270
Jooyung Hand045ebc2022-12-06 15:23:57 +0900271 if android.InList(":vndk", requireNativeLibs) {
272 if _, vndkVersion := a.getImageVariationPair(ctx.DeviceConfig()); vndkVersion != "" {
273 optCommands = append(optCommands, "-v vndkVersion "+vndkVersion)
274 }
275 }
276
Jiyong Parkb81b9902020-11-24 19:51:18 +0900277 manifestJsonFullOut := android.PathForModuleOut(ctx, "apex_manifest_full.json")
Sahana Rao16ebdfd2022-12-02 17:00:22 +0000278 defaultVersion := android.DefaultUpdatableModuleVersion
Sam Delmerico6d65a0f2023-06-05 15:55:57 -0400279 if a.properties.Variant_version != nil {
280 defaultVersionInt, err := strconv.Atoi(defaultVersion)
281 if err != nil {
282 ctx.ModuleErrorf("expected DefaultUpdatableModuleVersion to be an int, but got %s", defaultVersion)
283 }
284 if defaultVersionInt%10 != 0 {
285 ctx.ModuleErrorf("expected DefaultUpdatableModuleVersion to end in a zero, but got %s", defaultVersion)
286 }
287 variantVersion := []rune(*a.properties.Variant_version)
288 if len(variantVersion) != 1 || variantVersion[0] < '0' || variantVersion[0] > '9' {
289 ctx.PropertyErrorf("variant_version", "expected an integer between 0-9; got %s", *a.properties.Variant_version)
290 }
291 defaultVersionRunes := []rune(defaultVersion)
292 defaultVersionRunes[len(defaultVersion)-1] = []rune(variantVersion)[0]
293 defaultVersion = string(defaultVersionRunes)
294 }
Sahana Rao16ebdfd2022-12-02 17:00:22 +0000295 if override := ctx.Config().Getenv("OVERRIDE_APEX_MANIFEST_DEFAULT_VERSION"); override != "" {
296 defaultVersion = override
297 }
Jiyong Park09d77522019-11-18 11:16:27 +0900298 ctx.Build(pctx, android.BuildParams{
299 Rule: apexManifestRule,
Alexei Nicoara0a389202022-07-12 14:35:39 +0100300 Input: src,
Jooyung Han214bf372019-11-12 13:03:50 +0900301 Output: manifestJsonFullOut,
Jiyong Park09d77522019-11-18 11:16:27 +0900302 Args: map[string]string{
303 "provideNativeLibs": strings.Join(provideNativeLibs, " "),
304 "requireNativeLibs": strings.Join(requireNativeLibs, " "),
Sahana Rao16ebdfd2022-12-02 17:00:22 +0000305 "default_version": defaultVersion,
Jiyong Park09d77522019-11-18 11:16:27 +0900306 "opt": strings.Join(optCommands, " "),
307 },
308 })
309
Jiyong Parkb81b9902020-11-24 19:51:18 +0900310 // b/143654022 Q apexd can't understand newly added keys in apex_manifest.json prepare
311 // stripped-down version so that APEX modules built from R+ can be installed to Q
Dan Albertc8060532020-07-22 22:32:17 -0700312 minSdkVersion := a.minSdkVersion(ctx)
313 if minSdkVersion.EqualTo(android.SdkVersion_Android10) {
Jooyung Han214bf372019-11-12 13:03:50 +0900314 a.manifestJsonOut = android.PathForModuleOut(ctx, "apex_manifest.json")
315 ctx.Build(pctx, android.BuildParams{
316 Rule: stripApexManifestRule,
317 Input: manifestJsonFullOut,
318 Output: a.manifestJsonOut,
319 })
320 }
Jiyong Park09d77522019-11-18 11:16:27 +0900321
Jiyong Parkb81b9902020-11-24 19:51:18 +0900322 // From R+, protobuf binary format (.pb) is the standard format for apex_manifest
Jiyong Park09d77522019-11-18 11:16:27 +0900323 a.manifestPbOut = android.PathForModuleOut(ctx, "apex_manifest.pb")
324 ctx.Build(pctx, android.BuildParams{
325 Rule: pbApexManifestRule,
Jooyung Han214bf372019-11-12 13:03:50 +0900326 Input: manifestJsonFullOut,
Jiyong Park09d77522019-11-18 11:16:27 +0900327 Output: a.manifestPbOut,
328 })
329}
330
Jiyong Parkb81b9902020-11-24 19:51:18 +0900331// buildFileContexts create build rules to append an entry for apex_manifest.pb to the file_contexts
332// file for this APEX which is either from /systme/sepolicy/apex/<apexname>-file_contexts or from
333// the file_contexts property of this APEX. This is to make sure that the manifest file is correctly
Jooyung Hanbe953902023-05-31 16:42:16 +0900334// labeled as system_file or vendor_apex_metadata_file.
Jiyong Parkb81b9902020-11-24 19:51:18 +0900335func (a *apexBundle) buildFileContexts(ctx android.ModuleContext) android.OutputPath {
Jooyung Han580eb4f2020-06-24 19:33:06 +0900336 var fileContexts android.Path
Liz Kammer37997c42021-09-14 17:53:38 -0400337 var fileContextsDir string
Jooyung Han580eb4f2020-06-24 19:33:06 +0900338 if a.properties.File_contexts == nil {
339 fileContexts = android.PathForSource(ctx, "system/sepolicy/apex", ctx.ModuleName()+"-file_contexts")
340 } else {
Liz Kammer37997c42021-09-14 17:53:38 -0400341 if m, t := android.SrcIsModuleWithTag(*a.properties.File_contexts); m != "" {
342 otherModule := android.GetModuleFromPathDep(ctx, m, t)
343 fileContextsDir = ctx.OtherModuleDir(otherModule)
344 }
Jooyung Han580eb4f2020-06-24 19:33:06 +0900345 fileContexts = android.PathForModuleSrc(ctx, *a.properties.File_contexts)
346 }
Liz Kammer37997c42021-09-14 17:53:38 -0400347 if fileContextsDir == "" {
348 fileContextsDir = filepath.Dir(fileContexts.String())
349 }
350 fileContextsDir += string(filepath.Separator)
351
Jooyung Han580eb4f2020-06-24 19:33:06 +0900352 if a.Platform() {
Liz Kammer37997c42021-09-14 17:53:38 -0400353 if !strings.HasPrefix(fileContextsDir, "system/sepolicy/") {
354 ctx.PropertyErrorf("file_contexts", "should be under system/sepolicy, but found in %q", fileContextsDir)
Jooyung Han580eb4f2020-06-24 19:33:06 +0900355 }
356 }
357 if !android.ExistentPathForSource(ctx, fileContexts.String()).Valid() {
Jiyong Parkb81b9902020-11-24 19:51:18 +0900358 ctx.PropertyErrorf("file_contexts", "cannot find file_contexts file: %q", fileContexts.String())
Jooyung Han580eb4f2020-06-24 19:33:06 +0900359 }
360
Jooyung Hanaf730952023-02-28 14:13:38 +0900361 useFileContextsAsIs := proptools.Bool(a.properties.Use_file_contexts_as_is)
362
Jooyung Han580eb4f2020-06-24 19:33:06 +0900363 output := android.PathForModuleOut(ctx, "file_contexts")
Colin Crossf1a035e2020-11-16 17:32:30 -0800364 rule := android.NewRuleBuilder(pctx, ctx)
Jooyung Han7f146c02020-09-23 19:15:55 +0900365
Jooyung Hanbe953902023-05-31 16:42:16 +0900366 forceLabel := "u:object_r:system_file:s0"
367 if a.SocSpecific() && !a.vndkApex {
368 // APEX on /vendor should label ./ and ./apex_manifest.pb as vendor_apex_metadata_file.
369 // The reason why we skip VNDK APEX is that aosp_{pixel device} targets install VNDK APEX on /vendor
370 // even though VNDK APEX is supposed to be installed on /system. (See com.android.vndk.current.on_vendor)
371 forceLabel = "u:object_r:vendor_apex_metadata_file:s0"
372 }
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900373 // remove old file
374 rule.Command().Text("rm").FlagWithOutput("-f ", output)
375 // copy file_contexts
376 rule.Command().Text("cat").Input(fileContexts).Text(">>").Output(output)
377 // new line
378 rule.Command().Text("echo").Text(">>").Output(output)
379 if !useFileContextsAsIs {
380 // force-label /apex_manifest.pb and /
381 rule.Command().Text("echo").Text("/apex_manifest\\\\.pb").Text(forceLabel).Text(">>").Output(output)
382 rule.Command().Text("echo").Text("/").Text(forceLabel).Text(">>").Output(output)
Jooyung Han7f146c02020-09-23 19:15:55 +0900383 }
384
Colin Crossf1a035e2020-11-16 17:32:30 -0800385 rule.Build("file_contexts."+a.Name(), "Generate file_contexts")
Jiyong Parkb81b9902020-11-24 19:51:18 +0900386 return output.OutputPath
Jooyung Han580eb4f2020-06-24 19:33:06 +0900387}
388
Jiyong Parkb81b9902020-11-24 19:51:18 +0900389// buildInstalledFilesFile creates a build rule for the installed-files.txt file where the list of
390// files included in this APEX is shown. The text file is dist'ed so that people can see what's
391// included in the APEX without actually downloading and extracting it.
Jiyong Park3a1602e2020-01-14 14:39:19 +0900392func (a *apexBundle) buildInstalledFilesFile(ctx android.ModuleContext, builtApex android.Path, imageDir android.Path) android.OutputPath {
393 output := android.PathForModuleOut(ctx, "installed-files.txt")
Colin Crossf1a035e2020-11-16 17:32:30 -0800394 rule := android.NewRuleBuilder(pctx, ctx)
Jiyong Park3a1602e2020-01-14 14:39:19 +0900395 rule.Command().
396 Implicit(builtApex).
397 Text("(cd " + imageDir.String() + " ; ").
Jiyong Parkbd63a102020-02-08 12:40:05 +0900398 Text("find . \\( -type f -o -type l \\) -printf \"%s %p\\n\") ").
Jiyong Park3a1602e2020-01-14 14:39:19 +0900399 Text(" | sort -nr > ").
400 Output(output)
Colin Crossf1a035e2020-11-16 17:32:30 -0800401 rule.Build("installed-files."+a.Name(), "Installed files")
Jiyong Park3a1602e2020-01-14 14:39:19 +0900402 return output.OutputPath
403}
404
Jiyong Parkb81b9902020-11-24 19:51:18 +0900405// buildBundleConfig creates a build rule for the bundle config file that will control the bundle
406// creation process.
Jiyong Parkbd159612020-02-28 15:22:21 +0900407func (a *apexBundle) buildBundleConfig(ctx android.ModuleContext) android.OutputPath {
408 output := android.PathForModuleOut(ctx, "bundle_config.json")
409
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900410 type ApkConfig struct {
411 Package_name string `json:"package_name"`
412 Apk_path string `json:"path"`
413 }
Jiyong Parkbd159612020-02-28 15:22:21 +0900414 config := struct {
415 Compression struct {
416 Uncompressed_glob []string `json:"uncompressed_glob"`
417 } `json:"compression"`
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900418 Apex_config struct {
419 Apex_embedded_apk_config []ApkConfig `json:"apex_embedded_apk_config,omitempty"`
420 } `json:"apex_config,omitempty"`
Jiyong Parkbd159612020-02-28 15:22:21 +0900421 }{}
422
423 config.Compression.Uncompressed_glob = []string{
424 "apex_payload.img",
425 "apex_manifest.*",
426 }
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900427
Jiyong Parkb81b9902020-11-24 19:51:18 +0900428 // Collect the manifest names and paths of android apps if their manifest names are
429 // overridden.
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900430 for _, fi := range a.filesInfo {
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700431 if fi.class != app && fi.class != appSet {
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900432 continue
433 }
434 packageName := fi.overriddenPackageName
435 if packageName != "" {
436 config.Apex_config.Apex_embedded_apk_config = append(
437 config.Apex_config.Apex_embedded_apk_config,
438 ApkConfig{
439 Package_name: packageName,
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900440 Apk_path: fi.path(),
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900441 })
442 }
443 }
444
Jiyong Parkbd159612020-02-28 15:22:21 +0900445 j, err := json.Marshal(config)
446 if err != nil {
447 panic(fmt.Errorf("error while marshalling to %q: %#v", output, err))
448 }
449
Colin Crosscf371cc2020-11-13 11:48:42 -0800450 android.WriteFileRule(ctx, output, string(j))
Jiyong Parkbd159612020-02-28 15:22:21 +0900451
452 return output.OutputPath
453}
454
Gurpreet Singh75d65f32022-01-24 17:44:05 +0000455func markManifestTestOnly(ctx android.ModuleContext, androidManifestFile android.Path) android.Path {
Gurpreet Singh7deabfa2022-02-10 13:28:35 +0000456 return java.ManifestFixer(ctx, androidManifestFile, java.ManifestFixerParams{
457 TestOnly: true,
Gurpreet Singh75d65f32022-01-24 17:44:05 +0000458 })
459}
460
Jooyung Haneec1b3f2023-06-20 16:25:59 +0900461// buildApex creates build rules to build an APEX using apexer.
462func (a *apexBundle) buildApex(ctx android.ModuleContext) {
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900463 suffix := imageApexSuffix
Jooyung Han63dff462023-02-09 00:11:27 +0000464 apexName := a.BaseModuleName()
Jiyong Park09d77522019-11-18 11:16:27 +0900465
Jiyong Parkb81b9902020-11-24 19:51:18 +0900466 ////////////////////////////////////////////////////////////////////////////////////////////
467 // Step 1: copy built files to appropriate directories under the image directory
468
469 imageDir := android.PathForModuleOut(ctx, "image"+suffix)
470
Colin Cross02730b92022-04-18 17:42:27 -0700471 installSymbolFiles := (!ctx.Config().KatiEnabled() || a.ExportedToMake()) && a.installable()
Colin Cross6340ea52021-11-04 12:01:18 -0700472
Colin Cross4acaea92021-12-10 23:05:02 +0000473 // set of dependency module:location mappings
474 installMapSet := make(map[string]bool)
Colin Cross6340ea52021-11-04 12:01:18 -0700475
Jiyong Parkb81b9902020-11-24 19:51:18 +0900476 // TODO(jiyong): use the RuleBuilder
Jiyong Park7cd10e32020-01-14 09:22:18 +0900477 var copyCommands []string
Jiyong Parkb81b9902020-11-24 19:51:18 +0900478 var implicitInputs []android.Path
Jooyung Han63dff462023-02-09 00:11:27 +0000479 apexDir := android.PathForModuleInPartitionInstall(ctx, "apex", apexName)
Jiyong Park7cd10e32020-01-14 09:22:18 +0900480 for _, fi := range a.filesInfo {
Jiyong Parkb81b9902020-11-24 19:51:18 +0900481 destPath := imageDir.Join(ctx, fi.path()).String()
Jiyong Parkb81b9902020-11-24 19:51:18 +0900482 // Prepare the destination path
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700483 destPathDir := filepath.Dir(destPath)
484 if fi.class == appSet {
485 copyCommands = append(copyCommands, "rm -rf "+destPathDir)
486 }
487 copyCommands = append(copyCommands, "mkdir -p "+destPathDir)
Jiyong Parkb81b9902020-11-24 19:51:18 +0900488
Colin Cross4acaea92021-12-10 23:05:02 +0000489 installMapPath := fi.builtFile
490
Jiyong Parkb81b9902020-11-24 19:51:18 +0900491 // Copy the built file to the directory. But if the symlink optimization is turned
492 // on, place a symlink to the corresponding file in /system partition instead.
Jiyong Parkc0ec6f92020-11-19 23:00:52 +0900493 if a.linkToSystemLib && fi.transitiveDep && fi.availableToPlatform() {
Jiyong Parkce243632023-02-17 18:22:25 +0900494 pathOnDevice := filepath.Join("/", fi.partition, fi.path())
Jiyong Park7cd10e32020-01-14 09:22:18 +0900495 copyCommands = append(copyCommands, "ln -sfn "+pathOnDevice+" "+destPath)
496 } else {
Jiyong Park4169a252022-09-29 21:30:25 +0900497 // Copy the file into APEX
498 copyCommands = append(copyCommands, "cp -f "+fi.builtFile.String()+" "+destPath)
499
Colin Cross4acaea92021-12-10 23:05:02 +0000500 var installedPath android.InstallPath
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700501 if fi.class == appSet {
Jiyong Park4169a252022-09-29 21:30:25 +0900502 // In case of AppSet, we need to copy additional APKs as well. They
503 // are zipped. So we need to unzip them.
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700504 copyCommands = append(copyCommands,
Colin Crossffbcd1d2021-11-12 12:19:42 -0800505 fmt.Sprintf("unzip -qDD -d %s %s", destPathDir,
506 fi.module.(*java.AndroidAppSet).PackedAdditionalOutputs().String()))
Colin Cross6340ea52021-11-04 12:01:18 -0700507 if installSymbolFiles {
Jooyung Han63dff462023-02-09 00:11:27 +0000508 installedPath = ctx.InstallFileWithExtraFilesZip(apexDir.Join(ctx, fi.installDir),
Colin Cross6340ea52021-11-04 12:01:18 -0700509 fi.stem(), fi.builtFile, fi.module.(*java.AndroidAppSet).PackedAdditionalOutputs())
510 }
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700511 } else {
Colin Cross6340ea52021-11-04 12:01:18 -0700512 if installSymbolFiles {
Jooyung Han63dff462023-02-09 00:11:27 +0000513 installedPath = ctx.InstallFile(apexDir.Join(ctx, fi.installDir), fi.stem(), fi.builtFile)
Colin Cross6340ea52021-11-04 12:01:18 -0700514 }
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700515 }
Jiyong Park7cd10e32020-01-14 09:22:18 +0900516 implicitInputs = append(implicitInputs, fi.builtFile)
Jiyong Parkb81b9902020-11-24 19:51:18 +0900517
Colin Cross4acaea92021-12-10 23:05:02 +0000518 // Create additional symlinks pointing the file inside the APEX (if any). Note that
519 // this is independent from the symlink optimization.
520 for _, symlinkPath := range fi.symlinkPaths() {
521 symlinkDest := imageDir.Join(ctx, symlinkPath).String()
522 copyCommands = append(copyCommands, "ln -sfn "+filepath.Base(destPath)+" "+symlinkDest)
523 if installSymbolFiles {
Inseob Kim5bedfee2023-04-20 10:16:14 +0900524 ctx.InstallSymlink(apexDir.Join(ctx, filepath.Dir(symlinkPath)), filepath.Base(symlinkPath), installedPath)
Colin Cross4acaea92021-12-10 23:05:02 +0000525 }
Colin Cross6340ea52021-11-04 12:01:18 -0700526 }
Colin Cross4acaea92021-12-10 23:05:02 +0000527
528 installMapPath = installedPath
Jiyong Park7cd10e32020-01-14 09:22:18 +0900529 }
Jiyong Parkb81b9902020-11-24 19:51:18 +0900530
531 // Copy the test files (if any)
Liz Kammer1c14a212020-05-12 15:26:55 -0700532 for _, d := range fi.dataPaths {
533 // TODO(eakammer): This is now the third repetition of ~this logic for test paths, refactoring should be possible
Chris Parsons216e10a2020-07-09 17:12:52 -0400534 relPath := d.SrcPath.Rel()
535 dataPath := d.SrcPath.String()
Liz Kammer1c14a212020-05-12 15:26:55 -0700536 if !strings.HasSuffix(dataPath, relPath) {
537 panic(fmt.Errorf("path %q does not end with %q", dataPath, relPath))
538 }
539
Jiyong Parkb81b9902020-11-24 19:51:18 +0900540 dataDest := imageDir.Join(ctx, fi.apexRelativePath(relPath), d.RelativeInstallPath).String()
Liz Kammer1c14a212020-05-12 15:26:55 -0700541
Chris Parsons216e10a2020-07-09 17:12:52 -0400542 copyCommands = append(copyCommands, "cp -f "+d.SrcPath.String()+" "+dataDest)
543 implicitInputs = append(implicitInputs, d.SrcPath)
Liz Kammer1c14a212020-05-12 15:26:55 -0700544 }
Colin Cross4acaea92021-12-10 23:05:02 +0000545
546 installMapSet[installMapPath.String()+":"+fi.installDir+"/"+fi.builtFile.Base()] = true
Jiyong Park09d77522019-11-18 11:16:27 +0900547 }
Jooyung Han214bf372019-11-12 13:03:50 +0900548 implicitInputs = append(implicitInputs, a.manifestPbOut)
Jiyong Park09d77522019-11-18 11:16:27 +0900549
Colin Cross4acaea92021-12-10 23:05:02 +0000550 if len(installMapSet) > 0 {
551 var installs []string
Cole Faust18994c72023-02-28 16:02:16 -0800552 installs = append(installs, android.SortedKeys(installMapSet)...)
Colin Cross4acaea92021-12-10 23:05:02 +0000553 a.SetLicenseInstallMap(installs)
554 }
555
Jiyong Parkb81b9902020-11-24 19:51:18 +0900556 ////////////////////////////////////////////////////////////////////////////////////////////
557 // Step 1.a: Write the list of files in this APEX to a txt file and compare it against
558 // the allowed list given via the allowed_files property. Build fails when the two lists
559 // differ.
560 //
561 // TODO(jiyong): consider removing this. Nobody other than com.android.apex.cts.shim.* seems
562 // to be using this at this moment. Furthermore, this looks very similar to what
563 // buildInstalledFilesFile does. At least, move this to somewhere else so that this doesn't
564 // hurt readability.
Jooyung Han938b5932020-06-20 12:47:47 +0900565 if a.overridableProperties.Allowed_files != nil {
Jiyong Parkb81b9902020-11-24 19:51:18 +0900566 // Build content.txt
Cole Fausta7347492022-12-16 10:56:24 -0800567 var contentLines []string
Jiyong Parkb81b9902020-11-24 19:51:18 +0900568 imageContentFile := android.PathForModuleOut(ctx, "content.txt")
Cole Fausta7347492022-12-16 10:56:24 -0800569 contentLines = append(contentLines, "./apex_manifest.pb")
Jiyong Parkb81b9902020-11-24 19:51:18 +0900570 minSdkVersion := a.minSdkVersion(ctx)
571 if minSdkVersion.EqualTo(android.SdkVersion_Android10) {
Cole Fausta7347492022-12-16 10:56:24 -0800572 contentLines = append(contentLines, "./apex_manifest.json")
Jiyong Parkb81b9902020-11-24 19:51:18 +0900573 }
574 for _, fi := range a.filesInfo {
Cole Fausta7347492022-12-16 10:56:24 -0800575 contentLines = append(contentLines, "./"+fi.path())
Jiyong Parkb81b9902020-11-24 19:51:18 +0900576 }
Cole Fausta7347492022-12-16 10:56:24 -0800577 sort.Strings(contentLines)
578 android.WriteFileRule(ctx, imageContentFile, strings.Join(contentLines, "\n"))
Jiyong Park09d77522019-11-18 11:16:27 +0900579 implicitInputs = append(implicitInputs, imageContentFile)
Jiyong Park09d77522019-11-18 11:16:27 +0900580
Jiyong Parkb81b9902020-11-24 19:51:18 +0900581 // Compare content.txt against allowed_files.
582 allowedFilesFile := android.PathForModuleSrc(ctx, proptools.String(a.overridableProperties.Allowed_files))
Jaewoong Jung1670ca02019-11-22 14:50:42 -0800583 phonyOutput := android.PathForModuleOut(ctx, a.Name()+"-diff-phony-output")
Jiyong Park09d77522019-11-18 11:16:27 +0900584 ctx.Build(pctx, android.BuildParams{
585 Rule: diffApexContentRule,
586 Implicits: implicitInputs,
587 Output: phonyOutput,
588 Description: "diff apex image content",
589 Args: map[string]string{
Colin Cross440e0d02020-06-11 11:32:11 -0700590 "allowed_files_file": allowedFilesFile.String(),
591 "image_content_file": imageContentFile.String(),
592 "apex_module_name": a.Name(),
Jiyong Park09d77522019-11-18 11:16:27 +0900593 },
594 })
Jiyong Park09d77522019-11-18 11:16:27 +0900595 implicitInputs = append(implicitInputs, phonyOutput)
596 }
597
Jiyong Parkb81b9902020-11-24 19:51:18 +0900598 unsignedOutputFile := android.PathForModuleOut(ctx, a.Name()+suffix+".unsigned")
Colin Cross790ef352021-10-25 19:15:55 -0700599 outHostBinDir := ctx.Config().HostToolPath(ctx, "").String()
Jiyong Park09d77522019-11-18 11:16:27 +0900600 prebuiltSdkToolsBinDir := filepath.Join("prebuilts", "sdk", "tools", runtime.GOOS, "bin")
601
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900602 ////////////////////////////////////////////////////////////////////////////////////
603 // Step 2: create canned_fs_config which encodes filemode,uid,gid of each files
604 // in this APEX. The file will be used by apexer in later steps.
605 cannedFsConfig := a.buildCannedFsConfig(ctx)
606 implicitInputs = append(implicitInputs, cannedFsConfig)
Jiyong Park1b0893e2021-12-13 23:40:17 +0900607
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900608 ////////////////////////////////////////////////////////////////////////////////////
609 // Step 3: Prepare option flags for apexer and invoke it to create an unsigned APEX.
610 // TODO(jiyong): use the RuleBuilder
611 optFlags := []string{}
Jiyong Park09d77522019-11-18 11:16:27 +0900612
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900613 fileContexts := a.buildFileContexts(ctx)
614 implicitInputs = append(implicitInputs, fileContexts)
Jiyong Park09d77522019-11-18 11:16:27 +0900615
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900616 implicitInputs = append(implicitInputs, a.privateKeyFile, a.publicKeyFile)
617 optFlags = append(optFlags, "--pubkey "+a.publicKeyFile.String())
Jiyong Parkb81b9902020-11-24 19:51:18 +0900618
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900619 manifestPackageName := a.getOverrideManifestPackageName(ctx)
620 if manifestPackageName != "" {
621 optFlags = append(optFlags, "--override_apk_package_name "+manifestPackageName)
622 }
Jiyong Park09d77522019-11-18 11:16:27 +0900623
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900624 if a.properties.AndroidManifest != nil {
625 androidManifestFile := android.PathForModuleSrc(ctx, proptools.String(a.properties.AndroidManifest))
626
627 if a.testApex {
628 androidManifestFile = markManifestTestOnly(ctx, androidManifestFile)
Jiyong Park09d77522019-11-18 11:16:27 +0900629 }
630
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900631 implicitInputs = append(implicitInputs, androidManifestFile)
632 optFlags = append(optFlags, "--android_manifest "+androidManifestFile.String())
633 } else if a.testApex {
634 optFlags = append(optFlags, "--test_only")
635 }
Gurpreet Singh75d65f32022-01-24 17:44:05 +0000636
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900637 // Determine target/min sdk version from the context
638 // TODO(jiyong): make this as a function
639 moduleMinSdkVersion := a.minSdkVersion(ctx)
640 minSdkVersion := moduleMinSdkVersion.String()
Gurpreet Singh75d65f32022-01-24 17:44:05 +0000641
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900642 // bundletool doesn't understand what "current" is. We need to transform it to
643 // codename
644 if moduleMinSdkVersion.IsCurrent() || moduleMinSdkVersion.IsNone() {
645 minSdkVersion = ctx.Config().DefaultAppTargetSdk(ctx).String()
Nikita Ioffe5d600c92020-02-20 00:43:27 +0000646
Nikita Ioffe1f4f3452020-03-02 16:58:11 +0000647 if java.UseApiFingerprint(ctx) {
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900648 minSdkVersion = ctx.Config().PlatformSdkCodename() + fmt.Sprintf(".$$(cat %s)", java.ApiFingerprintPath(ctx).String())
Baligh Uddinf6201372020-01-24 23:15:44 +0000649 implicitInputs = append(implicitInputs, java.ApiFingerprintPath(ctx))
650 }
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900651 }
652 // apex module doesn't have a concept of target_sdk_version, hence for the time
653 // being targetSdkVersion == default targetSdkVersion of the branch.
654 targetSdkVersion := strconv.Itoa(ctx.Config().DefaultAppTargetSdk(ctx).FinalOrFutureInt())
Jiyong Park09d77522019-11-18 11:16:27 +0900655
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900656 if java.UseApiFingerprint(ctx) {
657 targetSdkVersion = ctx.Config().PlatformSdkCodename() + fmt.Sprintf(".$$(cat %s)", java.ApiFingerprintPath(ctx).String())
658 implicitInputs = append(implicitInputs, java.ApiFingerprintPath(ctx))
659 }
660 optFlags = append(optFlags, "--target_sdk_version "+targetSdkVersion)
661 optFlags = append(optFlags, "--min_sdk_version "+minSdkVersion)
Baligh Uddin004d7172020-02-19 21:29:28 -0800662
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900663 if a.overridableProperties.Logging_parent != "" {
664 optFlags = append(optFlags, "--logging_parent ", a.overridableProperties.Logging_parent)
665 }
Jiyong Park09d77522019-11-18 11:16:27 +0900666
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900667 // Create a NOTICE file, and embed it as an asset file in the APEX.
668 htmlGzNotice := android.PathForModuleOut(ctx, "NOTICE.html.gz")
669 android.BuildNoticeHtmlOutputFromLicenseMetadata(
670 ctx, htmlGzNotice, "", "",
671 []string{
672 android.PathForModuleInstall(ctx).String() + "/",
673 android.PathForModuleInPartitionInstall(ctx, "apex").String() + "/",
Jiyong Park09d77522019-11-18 11:16:27 +0900674 })
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900675 noticeAssetPath := android.PathForModuleOut(ctx, "NOTICE", "NOTICE.html.gz")
676 builder := android.NewRuleBuilder(pctx, ctx)
677 builder.Command().Text("cp").
678 Input(htmlGzNotice).
679 Output(noticeAssetPath)
680 builder.Build("notice_dir", "Building notice dir")
681 implicitInputs = append(implicitInputs, noticeAssetPath)
682 optFlags = append(optFlags, "--assets_dir "+filepath.Dir(noticeAssetPath.String()))
Jiyong Park09d77522019-11-18 11:16:27 +0900683
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900684 // Apexes which are supposed to be installed in builtin dirs(/system, etc)
685 // don't need hashtree for activation. Therefore, by removing hashtree from
686 // apex bundle (filesystem image in it, to be specific), we can save storage.
687 needHashTree := moduleMinSdkVersion.LessThanOrEqualTo(android.SdkVersion_Android10) ||
688 a.shouldGenerateHashtree()
689 if ctx.Config().ApexCompressionEnabled() && a.isCompressable() {
690 needHashTree = true
691 }
692 if !needHashTree {
693 optFlags = append(optFlags, "--no_hashtree")
694 }
sophiezc80a2b32020-11-12 16:39:19 +0000695
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900696 if a.testOnlyShouldSkipPayloadSign() {
697 optFlags = append(optFlags, "--unsigned_payload")
698 }
699
700 if moduleMinSdkVersion == android.SdkVersion_Android10 {
701 implicitInputs = append(implicitInputs, a.manifestJsonOut)
702 optFlags = append(optFlags, "--manifest_json "+a.manifestJsonOut.String())
703 }
704
705 optFlags = append(optFlags, "--payload_fs_type "+a.payloadFsType.string())
706
707 if a.dynamic_common_lib_apex() {
sophiezc80a2b32020-11-12 16:39:19 +0000708 ctx.Build(pctx, android.BuildParams{
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900709 Rule: DCLAApexRule,
Jiyong Park09d77522019-11-18 11:16:27 +0900710 Implicits: implicitInputs,
711 Output: unsignedOutputFile,
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900712 Description: "apex",
Jiyong Park09d77522019-11-18 11:16:27 +0900713 Args: map[string]string{
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900714 "tool_path": outHostBinDir + ":" + prebuiltSdkToolsBinDir,
715 "image_dir": imageDir.String(),
716 "copy_commands": strings.Join(copyCommands, " && "),
717 "manifest": a.manifestPbOut.String(),
718 "file_contexts": fileContexts.String(),
719 "canned_fs_config": cannedFsConfig.String(),
720 "key": a.privateKeyFile.String(),
721 "opt_flags": strings.Join(optFlags, " "),
722 },
723 })
724 } else if ctx.Config().ApexTrimEnabled() && len(a.libs_to_trim(ctx)) > 0 {
725 ctx.Build(pctx, android.BuildParams{
726 Rule: TrimmedApexRule,
727 Implicits: implicitInputs,
728 Output: unsignedOutputFile,
729 Description: "apex",
730 Args: map[string]string{
731 "tool_path": outHostBinDir + ":" + prebuiltSdkToolsBinDir,
732 "image_dir": imageDir.String(),
733 "copy_commands": strings.Join(copyCommands, " && "),
734 "manifest": a.manifestPbOut.String(),
735 "file_contexts": fileContexts.String(),
736 "canned_fs_config": cannedFsConfig.String(),
737 "key": a.privateKeyFile.String(),
738 "opt_flags": strings.Join(optFlags, " "),
739 "libs_to_trim": strings.Join(a.libs_to_trim(ctx), ","),
740 },
741 })
742 } else {
743 ctx.Build(pctx, android.BuildParams{
744 Rule: apexRule,
745 Implicits: implicitInputs,
746 Output: unsignedOutputFile,
747 Description: "apex",
748 Args: map[string]string{
749 "tool_path": outHostBinDir + ":" + prebuiltSdkToolsBinDir,
750 "image_dir": imageDir.String(),
751 "copy_commands": strings.Join(copyCommands, " && "),
752 "manifest": a.manifestPbOut.String(),
753 "file_contexts": fileContexts.String(),
754 "canned_fs_config": cannedFsConfig.String(),
755 "key": a.privateKeyFile.String(),
756 "opt_flags": strings.Join(optFlags, " "),
Jiyong Park09d77522019-11-18 11:16:27 +0900757 },
758 })
759 }
760
Jooyung Han06a8a1c2023-08-23 11:11:43 +0900761 // TODO(jiyong): make the two rules below as separate functions
762 apexProtoFile := android.PathForModuleOut(ctx, a.Name()+".pb"+suffix)
763 bundleModuleFile := android.PathForModuleOut(ctx, a.Name()+suffix+"-base.zip")
764 a.bundleModuleFile = bundleModuleFile
765
766 ctx.Build(pctx, android.BuildParams{
767 Rule: apexProtoConvertRule,
768 Input: unsignedOutputFile,
769 Output: apexProtoFile,
770 Description: "apex proto convert",
771 })
772
773 implicitInputs = append(implicitInputs, unsignedOutputFile)
774
775 // Run coverage analysis
776 apisUsedbyOutputFile := android.PathForModuleOut(ctx, a.Name()+"_using.txt")
777 ctx.Build(pctx, android.BuildParams{
778 Rule: generateAPIsUsedbyApexRule,
779 Implicits: implicitInputs,
780 Description: "coverage",
781 Output: apisUsedbyOutputFile,
782 Args: map[string]string{
783 "image_dir": imageDir.String(),
784 "readelf": "${config.ClangBin}/llvm-readelf",
785 },
786 })
787 a.nativeApisUsedByModuleFile = apisUsedbyOutputFile
788
789 var nativeLibNames []string
790 for _, f := range a.filesInfo {
791 if f.class == nativeSharedLib {
792 nativeLibNames = append(nativeLibNames, f.stem())
793 }
794 }
795 apisBackedbyOutputFile := android.PathForModuleOut(ctx, a.Name()+"_backing.txt")
796 rb := android.NewRuleBuilder(pctx, ctx)
797 rb.Command().
798 Tool(android.PathForSource(ctx, "build/soong/scripts/gen_ndk_backedby_apex.sh")).
799 Output(apisBackedbyOutputFile).
800 Flags(nativeLibNames)
801 rb.Build("ndk_backedby_list", "Generate API libraries backed by Apex")
802 a.nativeApisBackedByModuleFile = apisBackedbyOutputFile
803
804 var javaLibOrApkPath []android.Path
805 for _, f := range a.filesInfo {
806 if f.class == javaSharedLib || f.class == app {
807 javaLibOrApkPath = append(javaLibOrApkPath, f.builtFile)
808 }
809 }
810 javaApiUsedbyOutputFile := android.PathForModuleOut(ctx, a.Name()+"_using.xml")
811 javaUsedByRule := android.NewRuleBuilder(pctx, ctx)
812 javaUsedByRule.Command().
813 Tool(android.PathForSource(ctx, "build/soong/scripts/gen_java_usedby_apex.sh")).
814 BuiltTool("dexdeps").
815 Output(javaApiUsedbyOutputFile).
816 Inputs(javaLibOrApkPath)
817 javaUsedByRule.Build("java_usedby_list", "Generate Java APIs used by Apex")
818 a.javaApisUsedByModuleFile = javaApiUsedbyOutputFile
819
820 bundleConfig := a.buildBundleConfig(ctx)
821
822 var abis []string
823 for _, target := range ctx.MultiTargets() {
824 if len(target.Arch.Abi) > 0 {
825 abis = append(abis, target.Arch.Abi[0])
826 }
827 }
828
829 abis = android.FirstUniqueStrings(abis)
830
831 ctx.Build(pctx, android.BuildParams{
832 Rule: apexBundleRule,
833 Input: apexProtoFile,
834 Implicit: bundleConfig,
835 Output: a.bundleModuleFile,
836 Description: "apex bundle module",
837 Args: map[string]string{
838 "abi": strings.Join(abis, "."),
839 "config": bundleConfig.String(),
840 },
841 })
842
Jiyong Parkb81b9902020-11-24 19:51:18 +0900843 ////////////////////////////////////////////////////////////////////////////////////
844 // Step 4: Sign the APEX using signapk
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +0000845 signedOutputFile := android.PathForModuleOut(ctx, a.Name()+suffix)
Jiyong Parkb81b9902020-11-24 19:51:18 +0900846
847 pem, key := a.getCertificateAndPrivateKey(ctx)
Kousik Kumar309b1c02020-05-28 06:13:33 -0700848 rule := java.Signapk
849 args := map[string]string{
Jiyong Parkb81b9902020-11-24 19:51:18 +0900850 "certificates": pem.String() + " " + key.String(),
Jooyung Han5d00f502021-07-11 07:26:22 +0900851 "flags": "-a 4096 --align-file-size", //alignment
Kousik Kumar309b1c02020-05-28 06:13:33 -0700852 }
Jiyong Parkb81b9902020-11-24 19:51:18 +0900853 implicits := android.Paths{pem, key}
Ramy Medhat16f23a42020-09-03 01:29:49 -0400854 if ctx.Config().UseRBE() && ctx.Config().IsEnvTrue("RBE_SIGNAPK") {
Kousik Kumar309b1c02020-05-28 06:13:33 -0700855 rule = java.SignapkRE
856 args["implicits"] = strings.Join(implicits.Strings(), ",")
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +0000857 args["outCommaList"] = signedOutputFile.String()
Kousik Kumar309b1c02020-05-28 06:13:33 -0700858 }
Jooyung Han01f5d652023-04-05 16:29:26 +0900859 var validations android.Paths
Jooyung Han4bc10262023-09-08 11:51:45 +0900860 validations = append(validations, runApexLinkerconfigValidation(ctx, unsignedOutputFile.OutputPath, imageDir.OutputPath))
Jooyung Hane6154412023-09-08 15:25:59 +0900861 if !a.testApex && a.SocSpecific() {
862 validations = append(validations, runApexVintfFragmentsValidation(ctx, unsignedOutputFile.OutputPath, imageDir.OutputPath))
863 }
Jooyung Hanb7cdbba2023-04-26 14:42:50 +0900864 // TODO(b/279688635) deapexer supports [ext4]
865 if suffix == imageApexSuffix && ext4 == a.payloadFsType {
Jooyung Han01f5d652023-04-05 16:29:26 +0900866 validations = append(validations, runApexSepolicyTests(ctx, unsignedOutputFile.OutputPath))
867 }
Jiyong Park09d77522019-11-18 11:16:27 +0900868 ctx.Build(pctx, android.BuildParams{
Kousik Kumar309b1c02020-05-28 06:13:33 -0700869 Rule: rule,
Jiyong Park09d77522019-11-18 11:16:27 +0900870 Description: "signapk",
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +0000871 Output: signedOutputFile,
Jiyong Park09d77522019-11-18 11:16:27 +0900872 Input: unsignedOutputFile,
Kousik Kumar309b1c02020-05-28 06:13:33 -0700873 Implicits: implicits,
874 Args: args,
Jooyung Han01f5d652023-04-05 16:29:26 +0900875 Validations: validations,
Jiyong Park09d77522019-11-18 11:16:27 +0900876 })
Jooyung Hana6d36672022-02-24 13:58:07 +0900877 if suffix == imageApexSuffix {
878 a.outputApexFile = signedOutputFile
879 }
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +0000880 a.outputFile = signedOutputFile
881
Mohammad Samiul Islama8008f92020-12-22 10:47:50 +0000882 if ctx.ModuleDir() != "system/apex/apexd/apexd_testdata" && a.testOnlyShouldForceCompression() {
883 ctx.PropertyErrorf("test_only_force_compression", "not available")
884 return
885 }
Nikita Ioffebc035882021-04-14 21:35:24 +0100886
Sasha Smundakfe9a5b82022-07-27 14:51:45 -0700887 installSuffix := suffix
888 a.setCompression(ctx)
889 if a.isCompressed {
Samiul Islam7c02e262021-09-08 17:48:28 +0100890 unsignedCompressedOutputFile := android.PathForModuleOut(ctx, a.Name()+imageCapexSuffix+".unsigned")
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +0000891
892 compressRule := android.NewRuleBuilder(pctx, ctx)
893 compressRule.Command().
894 Text("rm").
895 FlagWithOutput("-f ", unsignedCompressedOutputFile)
896 compressRule.Command().
897 BuiltTool("apex_compression_tool").
898 Flag("compress").
899 FlagWithArg("--apex_compression_tool ", outHostBinDir+":"+prebuiltSdkToolsBinDir).
900 FlagWithInput("--input ", signedOutputFile).
901 FlagWithOutput("--output ", unsignedCompressedOutputFile)
902 compressRule.Build("compressRule", "Generate unsigned compressed APEX file")
903
Samiul Islam7c02e262021-09-08 17:48:28 +0100904 signedCompressedOutputFile := android.PathForModuleOut(ctx, a.Name()+imageCapexSuffix)
Mohammad Samiul Islam9ac0e322021-01-19 11:32:29 +0000905 if ctx.Config().UseRBE() && ctx.Config().IsEnvTrue("RBE_SIGNAPK") {
906 args["outCommaList"] = signedCompressedOutputFile.String()
907 }
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +0000908 ctx.Build(pctx, android.BuildParams{
909 Rule: rule,
910 Description: "sign compressedApex",
911 Output: signedCompressedOutputFile,
912 Input: unsignedCompressedOutputFile,
913 Implicits: implicits,
914 Args: args,
915 })
916 a.outputFile = signedCompressedOutputFile
Martin Stjernholm8a3c9142022-07-26 09:35:39 +0000917 installSuffix = imageCapexSuffix
918 }
919
Colin Crossd9ccb6a2022-03-07 18:38:34 -0800920 if !a.installable() {
921 a.SkipInstall()
922 }
923
Jiyong Park17ff2832021-09-27 12:50:30 +0900924 // Install to $OUT/soong/{target,host}/.../apex.
Martin Stjernholm8a3c9142022-07-26 09:35:39 +0000925 a.installedFile = ctx.InstallFile(a.installDir, a.Name()+installSuffix, a.outputFile,
Colin Cross6340ea52021-11-04 12:01:18 -0700926 a.compatSymlinks.Paths()...)
Jiyong Park3a1602e2020-01-14 14:39:19 +0900927
928 // installed-files.txt is dist'ed
929 a.installedFilesFile = a.buildInstalledFilesFile(ctx, a.outputFile, imageDir)
Jiyong Park09d77522019-11-18 11:16:27 +0900930}
931
Jiyong Parkb81b9902020-11-24 19:51:18 +0900932// getCertificateAndPrivateKey retrieves the cert and the private key that will be used to sign
933// the zip container of this APEX. See the description of the 'certificate' property for how
934// the cert and the private key are found.
935func (a *apexBundle) getCertificateAndPrivateKey(ctx android.PathContext) (pem, key android.Path) {
Jaewoong Jung18aefc12020-12-21 09:11:10 -0800936 if a.containerCertificateFile != nil {
937 return a.containerCertificateFile, a.containerPrivateKeyFile
Jiyong Parkb81b9902020-11-24 19:51:18 +0900938 }
939
Jaewoong Jung4cfdf7d2021-04-20 16:21:24 -0700940 cert := String(a.overridableProperties.Certificate)
Jiyong Parkb81b9902020-11-24 19:51:18 +0900941 if cert == "" {
942 return ctx.Config().DefaultAppCertificate(ctx)
943 }
944
945 defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
946 pem = defaultDir.Join(ctx, cert+".x509.pem")
947 key = defaultDir.Join(ctx, cert+".pk8")
948 return pem, key
Jiyong Park09d77522019-11-18 11:16:27 +0900949}
Jooyung Han27151d92019-12-16 17:45:32 +0900950
951func (a *apexBundle) getOverrideManifestPackageName(ctx android.ModuleContext) string {
952 // For VNDK APEXes, check "com.android.vndk" in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES
953 // to see if it should be overridden because their <apex name> is dynamically generated
954 // according to its VNDK version.
955 if a.vndkApex {
956 overrideName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(vndkApexName)
957 if overridden {
Jooyung Han2cd2f9a2023-02-06 18:29:08 +0900958 return overrideName + ".v" + a.vndkVersion(ctx.DeviceConfig())
Jooyung Han27151d92019-12-16 17:45:32 +0900959 }
960 return ""
961 }
Baligh Uddin5b57dba2020-03-15 13:01:05 -0700962 if a.overridableProperties.Package_name != "" {
963 return a.overridableProperties.Package_name
964 }
Jiyong Park20bacab2020-03-03 11:45:41 +0900965 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
Jooyung Han27151d92019-12-16 17:45:32 +0900966 if overridden {
967 return manifestPackageName
968 }
969 return ""
970}
Jiyong Park83dc74b2020-01-14 18:38:44 +0900971
972func (a *apexBundle) buildApexDependencyInfo(ctx android.ModuleContext) {
Jiyong Park83dc74b2020-01-14 18:38:44 +0900973 if a.properties.IsCoverageVariant {
974 // Otherwise, we will have duplicated rules for coverage and
975 // non-coverage variants of the same APEX
976 return
977 }
978
Artur Satayev872a1442020-04-27 17:08:37 +0100979 depInfos := android.DepNameToDepInfoMap{}
Jooyung Han749dc692020-04-15 11:03:39 +0900980 a.WalkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool {
Artur Satayev872a1442020-04-27 17:08:37 +0100981 if from.Name() == to.Name() {
982 // This can happen for cc.reuseObjTag. We are not interested in tracking this.
983 // As soon as the dependency graph crosses the APEX boundary, don't go further.
984 return !externalDep
Jiyong Park678c8812020-02-07 17:25:49 +0900985 }
Jiyong Park83dc74b2020-01-14 18:38:44 +0900986
Artur Satayev533b98c2021-03-11 18:03:42 +0000987 // Skip dependencies that are only available to APEXes; they are developed with updatability
988 // in mind and don't need manual approval.
989 if to.(android.ApexModule).NotAvailableForPlatform() {
990 return !externalDep
991 }
992
Cindy Zhou18417cb2020-12-10 07:12:38 -0800993 depTag := ctx.OtherModuleDependencyTag(to)
Artur Satayev533b98c2021-03-11 18:03:42 +0000994 // Check to see if dependency been marked to skip the dependency check
Cindy Zhou18417cb2020-12-10 07:12:38 -0800995 if skipDepCheck, ok := depTag.(android.SkipApexAllowedDependenciesCheck); ok && skipDepCheck.SkipApexAllowedDependenciesCheck() {
Cindy Zhou18417cb2020-12-10 07:12:38 -0800996 return !externalDep
997 }
998
Artur Satayev872a1442020-04-27 17:08:37 +0100999 if info, exists := depInfos[to.Name()]; exists {
1000 if !android.InList(from.Name(), info.From) {
1001 info.From = append(info.From, from.Name())
1002 }
1003 info.IsExternal = info.IsExternal && externalDep
1004 depInfos[to.Name()] = info
1005 } else {
Artur Satayev480e25b2020-04-27 18:53:18 +01001006 toMinSdkVersion := "(no version)"
Jiyong Park92315372021-04-02 08:45:46 +09001007 if m, ok := to.(interface {
Spandan Das8c9ae7e2023-03-03 21:20:36 +00001008 MinSdkVersion(ctx android.EarlyModuleContext) android.ApiLevel
Jiyong Park92315372021-04-02 08:45:46 +09001009 }); ok {
Spandan Das8c9ae7e2023-03-03 21:20:36 +00001010 if v := m.MinSdkVersion(ctx); !v.IsNone() {
1011 toMinSdkVersion = v.String()
Jiyong Park92315372021-04-02 08:45:46 +09001012 }
1013 } else if m, ok := to.(interface{ MinSdkVersion() string }); ok {
1014 // TODO(b/175678607) eliminate the use of MinSdkVersion returning
1015 // string
Artur Satayev480e25b2020-04-27 18:53:18 +01001016 if v := m.MinSdkVersion(); v != "" {
1017 toMinSdkVersion = v
1018 }
1019 }
Artur Satayev872a1442020-04-27 17:08:37 +01001020 depInfos[to.Name()] = android.ApexModuleDepInfo{
Artur Satayev480e25b2020-04-27 18:53:18 +01001021 To: to.Name(),
1022 From: []string{from.Name()},
1023 IsExternal: externalDep,
1024 MinSdkVersion: toMinSdkVersion,
Artur Satayev872a1442020-04-27 17:08:37 +01001025 }
1026 }
1027
1028 // As soon as the dependency graph crosses the APEX boundary, don't go further.
1029 return !externalDep
Jiyong Park83dc74b2020-01-14 18:38:44 +09001030 })
1031
Spandan Das8c9ae7e2023-03-03 21:20:36 +00001032 a.ApexBundleDepsInfo.BuildDepsInfoLists(ctx, a.MinSdkVersion(ctx).String(), depInfos)
Artur Satayev872a1442020-04-27 17:08:37 +01001033
Jiyong Park83dc74b2020-01-14 18:38:44 +09001034 ctx.Build(pctx, android.BuildParams{
1035 Rule: android.Phony,
1036 Output: android.PathForPhony(ctx, a.Name()+"-deps-info"),
Artur Satayeva8bd1132020-04-27 18:07:06 +01001037 Inputs: []android.Path{
1038 a.ApexBundleDepsInfo.FullListPath(),
1039 a.ApexBundleDepsInfo.FlatListPath(),
1040 },
Jiyong Park83dc74b2020-01-14 18:38:44 +09001041 })
1042}
Colin Cross08dca382020-07-21 20:31:17 -07001043
1044func (a *apexBundle) buildLintReports(ctx android.ModuleContext) {
1045 depSetsBuilder := java.NewLintDepSetBuilder()
1046 for _, fi := range a.filesInfo {
1047 depSetsBuilder.Transitive(fi.lintDepSets)
1048 }
1049
1050 a.lintReports = java.BuildModuleLintReportZips(ctx, depSetsBuilder.Build())
1051}
Jiyong Park1b0893e2021-12-13 23:40:17 +09001052
1053func (a *apexBundle) buildCannedFsConfig(ctx android.ModuleContext) android.OutputPath {
1054 var readOnlyPaths = []string{"apex_manifest.json", "apex_manifest.pb"}
1055 var executablePaths []string // this also includes dirs
1056 var appSetDirs []string
1057 appSetFiles := make(map[string]android.Path)
1058 for _, f := range a.filesInfo {
1059 pathInApex := f.path()
1060 if f.installDir == "bin" || strings.HasPrefix(f.installDir, "bin/") {
1061 executablePaths = append(executablePaths, pathInApex)
1062 for _, d := range f.dataPaths {
1063 readOnlyPaths = append(readOnlyPaths, filepath.Join(f.installDir, d.RelativeInstallPath, d.SrcPath.Rel()))
1064 }
1065 for _, s := range f.symlinks {
1066 executablePaths = append(executablePaths, filepath.Join(f.installDir, s))
1067 }
1068 } else if f.class == appSet {
Jiyong Park4169a252022-09-29 21:30:25 +09001069 // base APK
1070 readOnlyPaths = append(readOnlyPaths, pathInApex)
1071 // Additional APKs
Jiyong Park1b0893e2021-12-13 23:40:17 +09001072 appSetDirs = append(appSetDirs, f.installDir)
Jiyong Parke1b69142022-09-26 14:48:56 +09001073 appSetFiles[f.installDir] = f.module.(*java.AndroidAppSet).PackedAdditionalOutputs()
Jiyong Park1b0893e2021-12-13 23:40:17 +09001074 } else {
1075 readOnlyPaths = append(readOnlyPaths, pathInApex)
1076 }
1077 dir := f.installDir
1078 for !android.InList(dir, executablePaths) && dir != "" {
1079 executablePaths = append(executablePaths, dir)
1080 dir, _ = filepath.Split(dir) // move up to the parent
1081 if len(dir) > 0 {
1082 // remove trailing slash
1083 dir = dir[:len(dir)-1]
1084 }
1085 }
1086 }
1087 sort.Strings(readOnlyPaths)
1088 sort.Strings(executablePaths)
1089 sort.Strings(appSetDirs)
1090
1091 cannedFsConfig := android.PathForModuleOut(ctx, "canned_fs_config")
1092 builder := android.NewRuleBuilder(pctx, ctx)
1093 cmd := builder.Command()
1094 cmd.Text("(")
1095 cmd.Text("echo '/ 1000 1000 0755';")
1096 for _, p := range readOnlyPaths {
1097 cmd.Textf("echo '/%s 1000 1000 0644';", p)
1098 }
1099 for _, p := range executablePaths {
1100 cmd.Textf("echo '/%s 0 2000 0755';", p)
1101 }
1102 for _, dir := range appSetDirs {
1103 cmd.Textf("echo '/%s 0 2000 0755';", dir)
1104 file := appSetFiles[dir]
1105 cmd.Text("zipinfo -1").Input(file).Textf(`| sed "s:\(.*\):/%s/\1 1000 1000 0644:";`, dir)
1106 }
Jiyong Park038e8522021-12-13 23:56:35 +09001107 // Custom fs_config is "appended" to the last so that entries from the file are preferred
1108 // over default ones set above.
1109 if a.properties.Canned_fs_config != nil {
1110 cmd.Text("cat").Input(android.PathForModuleSrc(ctx, *a.properties.Canned_fs_config))
1111 }
Maciej Żenczykowski67e2f792023-03-27 07:03:43 +00001112 cmd.Text(")").FlagWithOutput("> ", cannedFsConfig)
Jiyong Park1b0893e2021-12-13 23:40:17 +09001113 builder.Build("generateFsConfig", fmt.Sprintf("Generating canned fs config for %s", a.BaseModuleName()))
1114
1115 return cannedFsConfig.OutputPath
1116}
Jooyung Han01f5d652023-04-05 16:29:26 +09001117
Jooyung Han4bc10262023-09-08 11:51:45 +09001118func runApexLinkerconfigValidation(ctx android.ModuleContext, apexFile android.OutputPath, imageDir android.OutputPath) android.Path {
1119 timestamp := android.PathForModuleOut(ctx, "apex_linkerconfig_validation.timestamp")
1120 ctx.Build(pctx, android.BuildParams{
1121 Rule: apexLinkerconfigValidationRule,
1122 Input: apexFile,
1123 Output: timestamp,
1124 Args: map[string]string{
1125 "image_dir": imageDir.String(),
1126 },
1127 })
1128 return timestamp
1129}
1130
Jooyung Hane6154412023-09-08 15:25:59 +09001131func runApexVintfFragmentsValidation(ctx android.ModuleContext, apexFile android.OutputPath, imageDir android.OutputPath) android.Path {
1132 timestamp := android.PathForModuleOut(ctx, "apex_vintf_fragments_validation.timestamp")
1133 ctx.Build(pctx, android.BuildParams{
1134 Rule: apexVintfFragmentsValidationRule,
1135 Input: apexFile,
1136 Output: timestamp,
1137 Args: map[string]string{
1138 "image_dir": imageDir.String(),
1139 },
1140 })
1141 return timestamp
1142}
1143
Jooyung Han01f5d652023-04-05 16:29:26 +09001144// Runs apex_sepolicy_tests
1145//
1146// $ deapexer list -Z {apex_file} > {file_contexts}
1147// $ apex_sepolicy_tests -f {file_contexts}
1148func runApexSepolicyTests(ctx android.ModuleContext, apexFile android.OutputPath) android.Path {
1149 timestamp := android.PathForModuleOut(ctx, "sepolicy_tests.timestamp")
1150 ctx.Build(pctx, android.BuildParams{
1151 Rule: apexSepolicyTestsRule,
1152 Input: apexFile,
1153 Output: timestamp,
1154 })
1155 return timestamp
1156}