blob: 67bc206039ad7a5229e850c51944b685ee1d4d02 [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"
Jooyung Han5417f772020-03-12 18:37:20 +090023 "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")
39 pctx.Import("android/soong/java")
40 pctx.HostBinToolVariable("apexer", "apexer")
41 // ART minimal builds (using the master-art manifest) do not have the "frameworks/base"
42 // projects, and hence cannot built 'aapt2'. Use the SDK prebuilt instead.
43 hostBinToolVariableWithPrebuilt := func(name, prebuiltDir, tool string) {
44 pctx.VariableFunc(name, func(ctx android.PackageVarContext) string {
45 if !ctx.Config().FrameworksBaseDirExists(ctx) {
46 return filepath.Join(prebuiltDir, runtime.GOOS, "bin", tool)
47 } else {
Martin Stjernholm7260d062019-12-09 21:47:14 +000048 return ctx.Config().HostToolPath(ctx, tool).String()
Jiyong Park09d77522019-11-18 11:16:27 +090049 }
50 })
51 }
52 hostBinToolVariableWithPrebuilt("aapt2", "prebuilts/sdk/tools", "aapt2")
53 pctx.HostBinToolVariable("avbtool", "avbtool")
54 pctx.HostBinToolVariable("e2fsdroid", "e2fsdroid")
55 pctx.HostBinToolVariable("merge_zips", "merge_zips")
56 pctx.HostBinToolVariable("mke2fs", "mke2fs")
57 pctx.HostBinToolVariable("resize2fs", "resize2fs")
58 pctx.HostBinToolVariable("sefcontext_compile", "sefcontext_compile")
59 pctx.HostBinToolVariable("soong_zip", "soong_zip")
60 pctx.HostBinToolVariable("zip2zip", "zip2zip")
61 pctx.HostBinToolVariable("zipalign", "zipalign")
62 pctx.HostBinToolVariable("jsonmodify", "jsonmodify")
63 pctx.HostBinToolVariable("conv_apex_manifest", "conv_apex_manifest")
64}
65
66var (
67 // Create a canned fs config file where all files and directories are
68 // by default set to (uid/gid/mode) = (1000/1000/0644)
69 // TODO(b/113082813) make this configurable using config.fs syntax
70 generateFsConfig = pctx.StaticRule("generateFsConfig", blueprint.RuleParams{
71 Command: `echo '/ 1000 1000 0755' > ${out} && ` +
72 `echo ${ro_paths} | tr ' ' '\n' | awk '{print "/"$$1 " 1000 1000 0644"}' >> ${out} && ` +
73 `echo ${exec_paths} | tr ' ' '\n' | awk '{print "/"$$1 " 0 2000 0755"}' >> ${out}`,
74 Description: "fs_config ${out}",
75 }, "ro_paths", "exec_paths")
76
77 apexManifestRule = pctx.StaticRule("apexManifestRule", blueprint.RuleParams{
78 Command: `rm -f $out && ${jsonmodify} $in ` +
79 `-a provideNativeLibs ${provideNativeLibs} ` +
80 `-a requireNativeLibs ${requireNativeLibs} ` +
81 `${opt} ` +
82 `-o $out`,
83 CommandDeps: []string{"${jsonmodify}"},
84 Description: "prepare ${out}",
85 }, "provideNativeLibs", "requireNativeLibs", "opt")
86
87 stripApexManifestRule = pctx.StaticRule("stripApexManifestRule", blueprint.RuleParams{
88 Command: `rm -f $out && ${conv_apex_manifest} strip $in -o $out`,
89 CommandDeps: []string{"${conv_apex_manifest}"},
90 Description: "strip ${in}=>${out}",
91 })
92
93 pbApexManifestRule = pctx.StaticRule("pbApexManifestRule", blueprint.RuleParams{
94 Command: `rm -f $out && ${conv_apex_manifest} proto $in -o $out`,
95 CommandDeps: []string{"${conv_apex_manifest}"},
96 Description: "convert ${in}=>${out}",
97 })
98
99 // TODO(b/113233103): make sure that file_contexts is sane, i.e., validate
100 // against the binary policy using sefcontext_compiler -p <policy>.
101
102 // TODO(b/114327326): automate the generation of file_contexts
103 apexRule = pctx.StaticRule("apexRule", blueprint.RuleParams{
104 Command: `rm -rf ${image_dir} && mkdir -p ${image_dir} && ` +
105 `(. ${out}.copy_commands) && ` +
106 `APEXER_TOOL_PATH=${tool_path} ` +
107 `${apexer} --force --manifest ${manifest} ` +
Jiyong Park09d77522019-11-18 11:16:27 +0900108 `--file_contexts ${file_contexts} ` +
109 `--canned_fs_config ${canned_fs_config} ` +
Dario Freni0f4ae072020-01-02 15:24:12 +0000110 `--include_build_info ` +
Jiyong Park09d77522019-11-18 11:16:27 +0900111 `--payload_type image ` +
112 `--key ${key} ${opt_flags} ${image_dir} ${out} `,
113 CommandDeps: []string{"${apexer}", "${avbtool}", "${e2fsdroid}", "${merge_zips}",
114 "${mke2fs}", "${resize2fs}", "${sefcontext_compile}",
115 "${soong_zip}", "${zipalign}", "${aapt2}", "prebuilts/sdk/current/public/android.jar"},
116 Rspfile: "${out}.copy_commands",
117 RspfileContent: "${copy_commands}",
118 Description: "APEX ${image_dir} => ${out}",
Jooyung Han214bf372019-11-12 13:03:50 +0900119 }, "tool_path", "image_dir", "copy_commands", "file_contexts", "canned_fs_config", "key", "opt_flags", "manifest")
Jiyong Park09d77522019-11-18 11:16:27 +0900120
121 zipApexRule = pctx.StaticRule("zipApexRule", blueprint.RuleParams{
122 Command: `rm -rf ${image_dir} && mkdir -p ${image_dir} && ` +
123 `(. ${out}.copy_commands) && ` +
124 `APEXER_TOOL_PATH=${tool_path} ` +
Jooyung Han214bf372019-11-12 13:03:50 +0900125 `${apexer} --force --manifest ${manifest} ` +
Jiyong Park09d77522019-11-18 11:16:27 +0900126 `--payload_type zip ` +
127 `${image_dir} ${out} `,
128 CommandDeps: []string{"${apexer}", "${merge_zips}", "${soong_zip}", "${zipalign}", "${aapt2}"},
129 Rspfile: "${out}.copy_commands",
130 RspfileContent: "${copy_commands}",
131 Description: "ZipAPEX ${image_dir} => ${out}",
Jooyung Han214bf372019-11-12 13:03:50 +0900132 }, "tool_path", "image_dir", "copy_commands", "manifest")
Jiyong Park09d77522019-11-18 11:16:27 +0900133
134 apexProtoConvertRule = pctx.AndroidStaticRule("apexProtoConvertRule",
135 blueprint.RuleParams{
136 Command: `${aapt2} convert --output-format proto $in -o $out`,
137 CommandDeps: []string{"${aapt2}"},
138 })
139
140 apexBundleRule = pctx.StaticRule("apexBundleRule", blueprint.RuleParams{
Jiyong Parkbd159612020-02-28 15:22:21 +0900141 Command: `${zip2zip} -i $in -o $out.base ` +
Jiyong Park09d77522019-11-18 11:16:27 +0900142 `apex_payload.img:apex/${abi}.img ` +
Dario Frenida1aefe2020-03-02 21:47:09 +0000143 `apex_build_info.pb:apex/${abi}.build_info.pb ` +
Jiyong Park09d77522019-11-18 11:16:27 +0900144 `apex_manifest.json:root/apex_manifest.json ` +
Jiyong Park53ae3342019-12-08 02:06:24 +0900145 `apex_manifest.pb:root/apex_manifest.pb ` +
Jiyong Park09d77522019-11-18 11:16:27 +0900146 `AndroidManifest.xml:manifest/AndroidManifest.xml ` +
Jiyong Parkbd159612020-02-28 15:22:21 +0900147 `assets/NOTICE.html.gz:assets/NOTICE.html.gz &&` +
148 `${soong_zip} -o $out.config -C $$(dirname ${config}) -f ${config} && ` +
149 `${merge_zips} $out $out.base $out.config`,
150 CommandDeps: []string{"${zip2zip}", "${soong_zip}", "${merge_zips}"},
Jiyong Park09d77522019-11-18 11:16:27 +0900151 Description: "app bundle",
Jiyong Parkbd159612020-02-28 15:22:21 +0900152 }, "abi", "config")
Jiyong Park09d77522019-11-18 11:16:27 +0900153
154 emitApexContentRule = pctx.StaticRule("emitApexContentRule", blueprint.RuleParams{
155 Command: `rm -f ${out} && touch ${out} && (. ${out}.emit_commands)`,
156 Rspfile: "${out}.emit_commands",
157 RspfileContent: "${emit_commands}",
158 Description: "Emit APEX image content",
159 }, "emit_commands")
160
161 diffApexContentRule = pctx.StaticRule("diffApexContentRule", blueprint.RuleParams{
162 Command: `diff --unchanged-group-format='' \` +
163 `--changed-group-format='%<' \` +
164 `${image_content_file} ${whitelisted_files_file} || (` +
165 `echo -e "New unexpected files were added to ${apex_module_name}." ` +
166 ` "To fix the build run following command:" && ` +
167 `echo "system/apex/tools/update_whitelist.sh ${whitelisted_files_file} ${image_content_file}" && ` +
Dan Willemsen81e43c52020-01-28 15:40:19 -0800168 `exit 1); touch ${out}`,
Jiyong Park09d77522019-11-18 11:16:27 +0900169 Description: "Diff ${image_content_file} and ${whitelisted_files_file}",
170 }, "image_content_file", "whitelisted_files_file", "apex_module_name")
171)
172
173func (a *apexBundle) buildManifest(ctx android.ModuleContext, provideNativeLibs, requireNativeLibs []string) {
174 manifestSrc := android.PathForModuleSrc(ctx, proptools.StringDefault(a.properties.Manifest, "apex_manifest.json"))
175
Jooyung Han214bf372019-11-12 13:03:50 +0900176 manifestJsonFullOut := android.PathForModuleOut(ctx, "apex_manifest_full.json")
Jiyong Park09d77522019-11-18 11:16:27 +0900177
178 // put dependency({provide|require}NativeLibs) in apex_manifest.json
179 provideNativeLibs = android.SortedUniqueStrings(provideNativeLibs)
180 requireNativeLibs = android.SortedUniqueStrings(android.RemoveListFromList(requireNativeLibs, provideNativeLibs))
181
182 // apex name can be overridden
183 optCommands := []string{}
184 if a.properties.Apex_name != nil {
185 optCommands = append(optCommands, "-v name "+*a.properties.Apex_name)
186 }
187
Jooyung Han643adc42020-02-27 13:50:06 +0900188 // collect jniLibs. Notice that a.filesInfo is already sorted
189 var jniLibs []string
190 for _, fi := range a.filesInfo {
191 if fi.isJniLib {
192 jniLibs = append(jniLibs, fi.builtFile.Base())
193 }
194 }
195 if len(jniLibs) > 0 {
196 optCommands = append(optCommands, "-a jniLibs "+strings.Join(jniLibs, " "))
197 }
198
Jiyong Park09d77522019-11-18 11:16:27 +0900199 ctx.Build(pctx, android.BuildParams{
200 Rule: apexManifestRule,
201 Input: manifestSrc,
Jooyung Han214bf372019-11-12 13:03:50 +0900202 Output: manifestJsonFullOut,
Jiyong Park09d77522019-11-18 11:16:27 +0900203 Args: map[string]string{
204 "provideNativeLibs": strings.Join(provideNativeLibs, " "),
205 "requireNativeLibs": strings.Join(requireNativeLibs, " "),
206 "opt": strings.Join(optCommands, " "),
207 },
208 })
209
Jooyung Han5417f772020-03-12 18:37:20 +0900210 if a.minSdkVersion(ctx) == android.SdkVersion_Android10 {
Jooyung Han214bf372019-11-12 13:03:50 +0900211 // b/143654022 Q apexd can't understand newly added keys in apex_manifest.json
212 // prepare stripped-down version so that APEX modules built from R+ can be installed to Q
213 a.manifestJsonOut = android.PathForModuleOut(ctx, "apex_manifest.json")
214 ctx.Build(pctx, android.BuildParams{
215 Rule: stripApexManifestRule,
216 Input: manifestJsonFullOut,
217 Output: a.manifestJsonOut,
218 })
219 }
Jiyong Park09d77522019-11-18 11:16:27 +0900220
221 // from R+, protobuf binary format (.pb) is the standard format for apex_manifest
222 a.manifestPbOut = android.PathForModuleOut(ctx, "apex_manifest.pb")
223 ctx.Build(pctx, android.BuildParams{
224 Rule: pbApexManifestRule,
Jooyung Han214bf372019-11-12 13:03:50 +0900225 Input: manifestJsonFullOut,
Jiyong Park09d77522019-11-18 11:16:27 +0900226 Output: a.manifestPbOut,
227 })
228}
229
Jiyong Park19972c72020-01-28 20:05:29 +0900230func (a *apexBundle) buildNoticeFiles(ctx android.ModuleContext, apexFileName string) android.NoticeOutputs {
Jiyong Park9918e1a2020-03-17 19:16:40 +0900231 var noticeFiles android.Paths
232
233 a.walkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) {
234 if externalDep {
235 return
Jiyong Park09d77522019-11-18 11:16:27 +0900236 }
Jiyong Park9918e1a2020-03-17 19:16:40 +0900237 notices := to.NoticeFiles()
238 noticeFiles = append(noticeFiles, notices...)
239 })
Jiyong Park09d77522019-11-18 11:16:27 +0900240
241 if len(noticeFiles) == 0 {
Jiyong Park19972c72020-01-28 20:05:29 +0900242 return android.NoticeOutputs{}
Jiyong Park09d77522019-11-18 11:16:27 +0900243 }
244
Jiyong Park19972c72020-01-28 20:05:29 +0900245 return android.BuildNoticeOutput(ctx, a.installDir, apexFileName, android.FirstUniquePaths(noticeFiles))
Jiyong Park09d77522019-11-18 11:16:27 +0900246}
247
Jiyong Park3a1602e2020-01-14 14:39:19 +0900248func (a *apexBundle) buildInstalledFilesFile(ctx android.ModuleContext, builtApex android.Path, imageDir android.Path) android.OutputPath {
249 output := android.PathForModuleOut(ctx, "installed-files.txt")
250 rule := android.NewRuleBuilder()
251 rule.Command().
252 Implicit(builtApex).
253 Text("(cd " + imageDir.String() + " ; ").
Jiyong Parkbd63a102020-02-08 12:40:05 +0900254 Text("find . \\( -type f -o -type l \\) -printf \"%s %p\\n\") ").
Jiyong Park3a1602e2020-01-14 14:39:19 +0900255 Text(" | sort -nr > ").
256 Output(output)
257 rule.Build(pctx, ctx, "installed-files."+a.Name(), "Installed files")
258 return output.OutputPath
259}
260
Jiyong Parkbd159612020-02-28 15:22:21 +0900261func (a *apexBundle) buildBundleConfig(ctx android.ModuleContext) android.OutputPath {
262 output := android.PathForModuleOut(ctx, "bundle_config.json")
263
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900264 type ApkConfig struct {
265 Package_name string `json:"package_name"`
266 Apk_path string `json:"path"`
267 }
Jiyong Parkbd159612020-02-28 15:22:21 +0900268 config := struct {
269 Compression struct {
270 Uncompressed_glob []string `json:"uncompressed_glob"`
271 } `json:"compression"`
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900272 Apex_config struct {
273 Apex_embedded_apk_config []ApkConfig `json:"apex_embedded_apk_config,omitempty"`
274 } `json:"apex_config,omitempty"`
Jiyong Parkbd159612020-02-28 15:22:21 +0900275 }{}
276
277 config.Compression.Uncompressed_glob = []string{
278 "apex_payload.img",
279 "apex_manifest.*",
280 }
Jiyong Parkcfaa1642020-02-28 16:51:07 +0900281
282 // collect the manifest names and paths of android apps
283 // if their manifest names are overridden
284 for _, fi := range a.filesInfo {
285 if fi.class != app {
286 continue
287 }
288 packageName := fi.overriddenPackageName
289 if packageName != "" {
290 config.Apex_config.Apex_embedded_apk_config = append(
291 config.Apex_config.Apex_embedded_apk_config,
292 ApkConfig{
293 Package_name: packageName,
294 Apk_path: fi.Path(),
295 })
296 }
297 }
298
Jiyong Parkbd159612020-02-28 15:22:21 +0900299 j, err := json.Marshal(config)
300 if err != nil {
301 panic(fmt.Errorf("error while marshalling to %q: %#v", output, err))
302 }
303
304 ctx.Build(pctx, android.BuildParams{
305 Rule: android.WriteFile,
306 Output: output,
307 Description: "Bundle Config " + output.String(),
308 Args: map[string]string{
309 "content": string(j),
310 },
311 })
312
313 return output.OutputPath
314}
315
Jiyong Park09d77522019-11-18 11:16:27 +0900316func (a *apexBundle) buildUnflattenedApex(ctx android.ModuleContext) {
317 var abis []string
318 for _, target := range ctx.MultiTargets() {
319 if len(target.Arch.Abi) > 0 {
320 abis = append(abis, target.Arch.Abi[0])
321 }
322 }
323
324 abis = android.FirstUniqueStrings(abis)
325
326 apexType := a.properties.ApexType
327 suffix := apexType.suffix()
Jiyong Park7cd10e32020-01-14 09:22:18 +0900328 var implicitInputs []android.Path
Jaewoong Jung1670ca02019-11-22 14:50:42 -0800329 unsignedOutputFile := android.PathForModuleOut(ctx, a.Name()+suffix+".unsigned")
Jiyong Park09d77522019-11-18 11:16:27 +0900330
Jiyong Park7cd10e32020-01-14 09:22:18 +0900331 // TODO(jiyong): construct the copy rules using RuleBuilder
332 var copyCommands []string
333 for _, fi := range a.filesInfo {
334 destPath := android.PathForModuleOut(ctx, "image"+suffix, fi.Path()).String()
335 copyCommands = append(copyCommands, "mkdir -p "+filepath.Dir(destPath))
336 if a.linkToSystemLib && fi.transitiveDep && fi.AvailableToPlatform() {
337 // TODO(jiyong): pathOnDevice should come from fi.module, not being calculated here
338 pathOnDevice := filepath.Join("/system", fi.Path())
339 copyCommands = append(copyCommands, "ln -sfn "+pathOnDevice+" "+destPath)
340 } else {
341 copyCommands = append(copyCommands, "cp -f "+fi.builtFile.String()+" "+destPath)
342 implicitInputs = append(implicitInputs, fi.builtFile)
343 }
344 // create additional symlinks pointing the file inside the APEX
345 for _, symlinkPath := range fi.SymlinkPaths() {
346 symlinkDest := android.PathForModuleOut(ctx, "image"+suffix, symlinkPath).String()
347 copyCommands = append(copyCommands, "ln -sfn "+filepath.Base(destPath)+" "+symlinkDest)
348 }
Jiyong Park09d77522019-11-18 11:16:27 +0900349 }
350
Jiyong Park7cd10e32020-01-14 09:22:18 +0900351 // TODO(jiyong): use RuleBuilder
352 var emitCommands []string
353 imageContentFile := android.PathForModuleOut(ctx, "content.txt")
Jooyung Han214bf372019-11-12 13:03:50 +0900354 emitCommands = append(emitCommands, "echo ./apex_manifest.pb >> "+imageContentFile.String())
Jooyung Han5417f772020-03-12 18:37:20 +0900355 if a.minSdkVersion(ctx) == android.SdkVersion_Android10 {
Jooyung Han214bf372019-11-12 13:03:50 +0900356 emitCommands = append(emitCommands, "echo ./apex_manifest.json >> "+imageContentFile.String())
357 }
Jiyong Park7cd10e32020-01-14 09:22:18 +0900358 for _, fi := range a.filesInfo {
359 emitCommands = append(emitCommands, "echo './"+fi.Path()+"' >> "+imageContentFile.String())
Jiyong Park09d77522019-11-18 11:16:27 +0900360 }
361 emitCommands = append(emitCommands, "sort -o "+imageContentFile.String()+" "+imageContentFile.String())
Jooyung Han214bf372019-11-12 13:03:50 +0900362 implicitInputs = append(implicitInputs, a.manifestPbOut)
Jiyong Park09d77522019-11-18 11:16:27 +0900363
364 if a.properties.Whitelisted_files != nil {
365 ctx.Build(pctx, android.BuildParams{
366 Rule: emitApexContentRule,
367 Implicits: implicitInputs,
368 Output: imageContentFile,
369 Description: "emit apex image content",
370 Args: map[string]string{
371 "emit_commands": strings.Join(emitCommands, " && "),
372 },
373 })
374 implicitInputs = append(implicitInputs, imageContentFile)
375 whitelistedFilesFile := android.PathForModuleSrc(ctx, proptools.String(a.properties.Whitelisted_files))
376
Jaewoong Jung1670ca02019-11-22 14:50:42 -0800377 phonyOutput := android.PathForModuleOut(ctx, a.Name()+"-diff-phony-output")
Jiyong Park09d77522019-11-18 11:16:27 +0900378 ctx.Build(pctx, android.BuildParams{
379 Rule: diffApexContentRule,
380 Implicits: implicitInputs,
381 Output: phonyOutput,
382 Description: "diff apex image content",
383 Args: map[string]string{
384 "whitelisted_files_file": whitelistedFilesFile.String(),
385 "image_content_file": imageContentFile.String(),
Jaewoong Jung1670ca02019-11-22 14:50:42 -0800386 "apex_module_name": a.Name(),
Jiyong Park09d77522019-11-18 11:16:27 +0900387 },
388 })
389
390 implicitInputs = append(implicitInputs, phonyOutput)
391 }
392
393 outHostBinDir := android.PathForOutput(ctx, "host", ctx.Config().PrebuiltOS(), "bin").String()
394 prebuiltSdkToolsBinDir := filepath.Join("prebuilts", "sdk", "tools", runtime.GOOS, "bin")
395
Jiyong Park3a1602e2020-01-14 14:39:19 +0900396 imageDir := android.PathForModuleOut(ctx, "image"+suffix)
Jiyong Park09d77522019-11-18 11:16:27 +0900397 if apexType == imageApex {
398 // files and dirs that will be created in APEX
399 var readOnlyPaths = []string{"apex_manifest.json", "apex_manifest.pb"}
400 var executablePaths []string // this also includes dirs
401 for _, f := range a.filesInfo {
402 pathInApex := filepath.Join(f.installDir, f.builtFile.Base())
403 if f.installDir == "bin" || strings.HasPrefix(f.installDir, "bin/") {
404 executablePaths = append(executablePaths, pathInApex)
405 for _, s := range f.symlinks {
406 executablePaths = append(executablePaths, filepath.Join(f.installDir, s))
407 }
408 } else {
409 readOnlyPaths = append(readOnlyPaths, pathInApex)
410 }
411 dir := f.installDir
412 for !android.InList(dir, executablePaths) && dir != "" {
413 executablePaths = append(executablePaths, dir)
414 dir, _ = filepath.Split(dir) // move up to the parent
415 if len(dir) > 0 {
416 // remove trailing slash
417 dir = dir[:len(dir)-1]
418 }
419 }
420 }
421 sort.Strings(readOnlyPaths)
422 sort.Strings(executablePaths)
423 cannedFsConfig := android.PathForModuleOut(ctx, "canned_fs_config")
424 ctx.Build(pctx, android.BuildParams{
425 Rule: generateFsConfig,
426 Output: cannedFsConfig,
427 Description: "generate fs config",
428 Args: map[string]string{
429 "ro_paths": strings.Join(readOnlyPaths, " "),
430 "exec_paths": strings.Join(executablePaths, " "),
431 },
432 })
433
Jiyong Park09d77522019-11-18 11:16:27 +0900434 optFlags := []string{}
435
436 // Additional implicit inputs.
Jooyung Han54aca7b2019-11-20 02:26:02 +0900437 implicitInputs = append(implicitInputs, cannedFsConfig, a.fileContexts, a.private_key_file, a.public_key_file)
Jiyong Park09d77522019-11-18 11:16:27 +0900438 optFlags = append(optFlags, "--pubkey "+a.public_key_file.String())
439
Jooyung Han27151d92019-12-16 17:45:32 +0900440 manifestPackageName := a.getOverrideManifestPackageName(ctx)
441 if manifestPackageName != "" {
Jiyong Park09d77522019-11-18 11:16:27 +0900442 optFlags = append(optFlags, "--override_apk_package_name "+manifestPackageName)
443 }
444
445 if a.properties.AndroidManifest != nil {
446 androidManifestFile := android.PathForModuleSrc(ctx, proptools.String(a.properties.AndroidManifest))
447 implicitInputs = append(implicitInputs, androidManifestFile)
448 optFlags = append(optFlags, "--android_manifest "+androidManifestFile.String())
449 }
450
451 targetSdkVersion := ctx.Config().DefaultAppTargetSdk()
Baligh Uddinf6201372020-01-24 23:15:44 +0000452 minSdkVersion := ctx.Config().DefaultAppTargetSdk()
Nikita Ioffe5d600c92020-02-20 00:43:27 +0000453
Jooyung Han5417f772020-03-12 18:37:20 +0900454 if a.minSdkVersion(ctx) == android.SdkVersion_Android10 {
455 minSdkVersion = strconv.Itoa(a.minSdkVersion(ctx))
456 targetSdkVersion = strconv.Itoa(a.minSdkVersion(ctx))
Nikita Ioffe5d600c92020-02-20 00:43:27 +0000457 }
458
Nikita Ioffe1f4f3452020-03-02 16:58:11 +0000459 if java.UseApiFingerprint(ctx) {
460 targetSdkVersion = ctx.Config().PlatformSdkCodename() + fmt.Sprintf(".$$(cat %s)", java.ApiFingerprintPath(ctx).String())
Baligh Uddinf6201372020-01-24 23:15:44 +0000461 implicitInputs = append(implicitInputs, java.ApiFingerprintPath(ctx))
462 }
Nikita Ioffe1f4f3452020-03-02 16:58:11 +0000463 if java.UseApiFingerprint(ctx) {
464 minSdkVersion = ctx.Config().PlatformSdkCodename() + fmt.Sprintf(".$$(cat %s)", java.ApiFingerprintPath(ctx).String())
Baligh Uddinf6201372020-01-24 23:15:44 +0000465 implicitInputs = append(implicitInputs, java.ApiFingerprintPath(ctx))
Jiyong Park09d77522019-11-18 11:16:27 +0900466 }
467 optFlags = append(optFlags, "--target_sdk_version "+targetSdkVersion)
Baligh Uddinf6201372020-01-24 23:15:44 +0000468 optFlags = append(optFlags, "--min_sdk_version "+minSdkVersion)
Jiyong Park09d77522019-11-18 11:16:27 +0900469
Baligh Uddin004d7172020-02-19 21:29:28 -0800470 if a.overridableProperties.Logging_parent != "" {
471 optFlags = append(optFlags, "--logging_parent ", a.overridableProperties.Logging_parent)
472 }
473
Jiyong Park19972c72020-01-28 20:05:29 +0900474 a.mergedNotices = a.buildNoticeFiles(ctx, a.Name()+suffix)
475 if a.mergedNotices.HtmlGzOutput.Valid() {
Jiyong Park09d77522019-11-18 11:16:27 +0900476 // If there's a NOTICE file, embed it as an asset file in the APEX.
Jiyong Park19972c72020-01-28 20:05:29 +0900477 implicitInputs = append(implicitInputs, a.mergedNotices.HtmlGzOutput.Path())
478 optFlags = append(optFlags, "--assets_dir "+filepath.Dir(a.mergedNotices.HtmlGzOutput.String()))
Jiyong Park09d77522019-11-18 11:16:27 +0900479 }
480
Nikita Ioffeb4b44c02020-01-02 23:01:39 +0000481 if ctx.ModuleDir() != "system/apex/apexd/apexd_testdata" && ctx.ModuleDir() != "system/apex/shim/build" && a.testOnlyShouldSkipHashtreeGeneration() {
Nikita Ioffec72b5dd2019-12-07 17:30:22 +0000482 ctx.PropertyErrorf("test_only_no_hashtree", "not available")
483 return
484 }
Jooyung Han5417f772020-03-12 18:37:20 +0900485 if a.minSdkVersion(ctx) > android.SdkVersion_Android10 || a.testOnlyShouldSkipHashtreeGeneration() {
Jiyong Park09d77522019-11-18 11:16:27 +0900486 // Apexes which are supposed to be installed in builtin dirs(/system, etc)
487 // don't need hashtree for activation. Therefore, by removing hashtree from
488 // apex bundle (filesystem image in it, to be specific), we can save storage.
489 optFlags = append(optFlags, "--no_hashtree")
490 }
491
492 if a.properties.Apex_name != nil {
493 // If apex_name is set, apexer can skip checking if key name matches with apex name.
494 // Note that apex_manifest is also mended.
495 optFlags = append(optFlags, "--do_not_check_keyname")
496 }
497
Jooyung Han5417f772020-03-12 18:37:20 +0900498 if a.minSdkVersion(ctx) == android.SdkVersion_Android10 {
Jooyung Han214bf372019-11-12 13:03:50 +0900499 implicitInputs = append(implicitInputs, a.manifestJsonOut)
500 optFlags = append(optFlags, "--manifest_json "+a.manifestJsonOut.String())
501 }
502
Jiyong Park09d77522019-11-18 11:16:27 +0900503 ctx.Build(pctx, android.BuildParams{
504 Rule: apexRule,
505 Implicits: implicitInputs,
506 Output: unsignedOutputFile,
507 Description: "apex (" + apexType.name() + ")",
508 Args: map[string]string{
Jooyung Han214bf372019-11-12 13:03:50 +0900509 "tool_path": outHostBinDir + ":" + prebuiltSdkToolsBinDir,
Jiyong Park3a1602e2020-01-14 14:39:19 +0900510 "image_dir": imageDir.String(),
Jooyung Han214bf372019-11-12 13:03:50 +0900511 "copy_commands": strings.Join(copyCommands, " && "),
512 "manifest": a.manifestPbOut.String(),
513 "file_contexts": a.fileContexts.String(),
514 "canned_fs_config": cannedFsConfig.String(),
515 "key": a.private_key_file.String(),
516 "opt_flags": strings.Join(optFlags, " "),
Jiyong Park09d77522019-11-18 11:16:27 +0900517 },
518 })
519
Jaewoong Jung1670ca02019-11-22 14:50:42 -0800520 apexProtoFile := android.PathForModuleOut(ctx, a.Name()+".pb"+suffix)
521 bundleModuleFile := android.PathForModuleOut(ctx, a.Name()+suffix+"-base.zip")
Jiyong Park09d77522019-11-18 11:16:27 +0900522 a.bundleModuleFile = bundleModuleFile
523
524 ctx.Build(pctx, android.BuildParams{
525 Rule: apexProtoConvertRule,
526 Input: unsignedOutputFile,
527 Output: apexProtoFile,
528 Description: "apex proto convert",
529 })
530
Jiyong Parkbd159612020-02-28 15:22:21 +0900531 bundleConfig := a.buildBundleConfig(ctx)
532
Jiyong Park09d77522019-11-18 11:16:27 +0900533 ctx.Build(pctx, android.BuildParams{
534 Rule: apexBundleRule,
535 Input: apexProtoFile,
Jiyong Parkbd159612020-02-28 15:22:21 +0900536 Implicit: bundleConfig,
Jiyong Park09d77522019-11-18 11:16:27 +0900537 Output: a.bundleModuleFile,
538 Description: "apex bundle module",
539 Args: map[string]string{
Jiyong Parkbd159612020-02-28 15:22:21 +0900540 "abi": strings.Join(abis, "."),
541 "config": bundleConfig.String(),
Jiyong Park09d77522019-11-18 11:16:27 +0900542 },
543 })
544 } else {
545 ctx.Build(pctx, android.BuildParams{
546 Rule: zipApexRule,
547 Implicits: implicitInputs,
548 Output: unsignedOutputFile,
549 Description: "apex (" + apexType.name() + ")",
550 Args: map[string]string{
Jooyung Han214bf372019-11-12 13:03:50 +0900551 "tool_path": outHostBinDir + ":" + prebuiltSdkToolsBinDir,
Jiyong Park3a1602e2020-01-14 14:39:19 +0900552 "image_dir": imageDir.String(),
Jooyung Han214bf372019-11-12 13:03:50 +0900553 "copy_commands": strings.Join(copyCommands, " && "),
554 "manifest": a.manifestPbOut.String(),
Jiyong Park09d77522019-11-18 11:16:27 +0900555 },
556 })
557 }
558
Jaewoong Jung1670ca02019-11-22 14:50:42 -0800559 a.outputFile = android.PathForModuleOut(ctx, a.Name()+suffix)
Jiyong Park09d77522019-11-18 11:16:27 +0900560 ctx.Build(pctx, android.BuildParams{
561 Rule: java.Signapk,
562 Description: "signapk",
563 Output: a.outputFile,
564 Input: unsignedOutputFile,
565 Implicits: []android.Path{
566 a.container_certificate_file,
567 a.container_private_key_file,
568 },
569 Args: map[string]string{
570 "certificates": a.container_certificate_file.String() + " " + a.container_private_key_file.String(),
571 "flags": "-a 4096", //alignment
572 },
573 })
574
575 // Install to $OUT/soong/{target,host}/.../apex
576 if a.installable() {
Jaewoong Jung1670ca02019-11-22 14:50:42 -0800577 ctx.InstallFile(a.installDir, a.Name()+suffix, a.outputFile)
Jiyong Park09d77522019-11-18 11:16:27 +0900578 }
579 a.buildFilesInfo(ctx)
Jiyong Park3a1602e2020-01-14 14:39:19 +0900580
581 // installed-files.txt is dist'ed
582 a.installedFilesFile = a.buildInstalledFilesFile(ctx, a.outputFile, imageDir)
Jiyong Park09d77522019-11-18 11:16:27 +0900583}
584
585func (a *apexBundle) buildFlattenedApex(ctx android.ModuleContext) {
586 // Temporarily wrap the original `ctx` into a `flattenedApexContext` to have it
587 // reply true to `InstallBypassMake()` (thus making the call
588 // `android.PathForModuleInstall` below use `android.pathForInstallInMakeDir`
589 // instead of `android.PathForOutput`) to return the correct path to the flattened
590 // APEX (as its contents is installed by Make, not Soong).
591 factx := flattenedApexContext{ctx}
Jiyong Parka5948012020-02-07 10:15:14 +0900592 apexBundleName := a.Name()
593 a.outputFile = android.PathForModuleInstall(&factx, "apex", apexBundleName)
Jiyong Park09d77522019-11-18 11:16:27 +0900594
Jiyong Park317645e2019-12-05 13:20:58 +0900595 if a.installable() && a.GetOverriddenBy() == "" {
Jiyong Parka5948012020-02-07 10:15:14 +0900596 installPath := android.PathForModuleInstall(ctx, "apex", apexBundleName)
Jooyung Han54aca7b2019-11-20 02:26:02 +0900597 devicePath := android.InstallPathToOnDevicePath(ctx, installPath)
Jiyong Parka5948012020-02-07 10:15:14 +0900598 addFlattenedFileContextsInfos(ctx, apexBundleName+":"+devicePath+":"+a.fileContexts.String())
Jooyung Han54aca7b2019-11-20 02:26:02 +0900599 }
Jiyong Park09d77522019-11-18 11:16:27 +0900600 a.buildFilesInfo(ctx)
601}
602
603func (a *apexBundle) setCertificateAndPrivateKey(ctx android.ModuleContext) {
Jooyung Hanf121a652019-12-17 14:30:11 +0900604 if a.container_certificate_file == nil {
605 cert := String(a.properties.Certificate)
606 if cert == "" {
607 pem, key := ctx.Config().DefaultAppCertificate(ctx)
608 a.container_certificate_file = pem
609 a.container_private_key_file = key
610 } else {
611 defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
612 a.container_certificate_file = defaultDir.Join(ctx, cert+".x509.pem")
613 a.container_private_key_file = defaultDir.Join(ctx, cert+".pk8")
614 }
Jiyong Park09d77522019-11-18 11:16:27 +0900615 }
616}
617
618func (a *apexBundle) buildFilesInfo(ctx android.ModuleContext) {
619 if a.installable() {
Jooyung Han214bf372019-11-12 13:03:50 +0900620 // For flattened APEX, do nothing but make sure that APEX manifest and apex_pubkey are also copied along
Jiyong Park09d77522019-11-18 11:16:27 +0900621 // with other ordinary files.
Jiyong Park7cd10e32020-01-14 09:22:18 +0900622 a.filesInfo = append(a.filesInfo, newApexFile(ctx, a.manifestPbOut, "apex_manifest.pb", ".", etc, nil))
Jiyong Park09d77522019-11-18 11:16:27 +0900623
624 // rename to apex_pubkey
625 copiedPubkey := android.PathForModuleOut(ctx, "apex_pubkey")
626 ctx.Build(pctx, android.BuildParams{
627 Rule: android.Cp,
628 Input: a.public_key_file,
629 Output: copiedPubkey,
630 })
Jiyong Park7cd10e32020-01-14 09:22:18 +0900631 a.filesInfo = append(a.filesInfo, newApexFile(ctx, copiedPubkey, "apex_pubkey", ".", etc, nil))
Jiyong Park09d77522019-11-18 11:16:27 +0900632
633 if a.properties.ApexType == flattenedApex {
Jiyong Parka5948012020-02-07 10:15:14 +0900634 apexBundleName := a.Name()
Jiyong Park09d77522019-11-18 11:16:27 +0900635 for _, fi := range a.filesInfo {
Jiyong Parka5948012020-02-07 10:15:14 +0900636 dir := filepath.Join("apex", apexBundleName, fi.installDir)
Jiyong Park09d77522019-11-18 11:16:27 +0900637 target := ctx.InstallFile(android.PathForModuleInstall(ctx, dir), fi.builtFile.Base(), fi.builtFile)
638 for _, sym := range fi.symlinks {
639 ctx.InstallSymlink(android.PathForModuleInstall(ctx, dir), sym, target)
640 }
641 }
642 }
643 }
644}
Jooyung Han27151d92019-12-16 17:45:32 +0900645
646func (a *apexBundle) getOverrideManifestPackageName(ctx android.ModuleContext) string {
647 // For VNDK APEXes, check "com.android.vndk" in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES
648 // to see if it should be overridden because their <apex name> is dynamically generated
649 // according to its VNDK version.
650 if a.vndkApex {
651 overrideName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(vndkApexName)
652 if overridden {
653 return strings.Replace(*a.properties.Apex_name, vndkApexName, overrideName, 1)
654 }
655 return ""
656 }
Baligh Uddin5b57dba2020-03-15 13:01:05 -0700657 if a.overridableProperties.Package_name != "" {
658 return a.overridableProperties.Package_name
659 }
Jiyong Park20bacab2020-03-03 11:45:41 +0900660 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
Jooyung Han27151d92019-12-16 17:45:32 +0900661 if overridden {
662 return manifestPackageName
663 }
664 return ""
665}
Jiyong Park83dc74b2020-01-14 18:38:44 +0900666
667func (a *apexBundle) buildApexDependencyInfo(ctx android.ModuleContext) {
668 if !a.primaryApexType {
669 return
670 }
671
672 if a.properties.IsCoverageVariant {
673 // Otherwise, we will have duplicated rules for coverage and
674 // non-coverage variants of the same APEX
675 return
676 }
677
678 if ctx.Host() {
679 // No need to generate dependency info for host variant
680 return
681 }
682
Jiyong Park83dc74b2020-01-14 18:38:44 +0900683 var content strings.Builder
Jiyong Park678c8812020-02-07 17:25:49 +0900684 for _, key := range android.SortedStringKeys(a.depInfos) {
685 info := a.depInfos[key]
686 toName := info.to
687 if info.isExternal {
688 toName = toName + " (external)"
689 }
690 fmt.Fprintf(&content, "%s <- %s\\n", toName, strings.Join(android.SortedUniqueStrings(info.from), ", "))
Jiyong Park83dc74b2020-01-14 18:38:44 +0900691 }
692
693 depsInfoFile := android.PathForOutput(ctx, a.Name()+"-deps-info.txt")
694 ctx.Build(pctx, android.BuildParams{
695 Rule: android.WriteFile,
696 Description: "Dependency Info",
697 Output: depsInfoFile,
698 Args: map[string]string{
699 "content": content.String(),
700 },
701 })
702
703 ctx.Build(pctx, android.BuildParams{
704 Rule: android.Phony,
705 Output: android.PathForPhony(ctx, a.Name()+"-deps-info"),
706 Inputs: []android.Path{depsInfoFile},
707 })
708}