blob: 54557bb880b8685274697217165831818a569ff9 [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 Parkd93e1b12020-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 Han23b0adf2020-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 Parkd93e1b12020-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 Freni18423782020-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 Parkd93e1b12020-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 Parkd93e1b12020-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
188 ctx.Build(pctx, android.BuildParams{
189 Rule: apexManifestRule,
190 Input: manifestSrc,
Jooyung Han214bf372019-11-12 13:03:50 +0900191 Output: manifestJsonFullOut,
Jiyong Park09d77522019-11-18 11:16:27 +0900192 Args: map[string]string{
193 "provideNativeLibs": strings.Join(provideNativeLibs, " "),
194 "requireNativeLibs": strings.Join(requireNativeLibs, " "),
195 "opt": strings.Join(optCommands, " "),
196 },
197 })
198
Jooyung Han23b0adf2020-03-12 18:37:20 +0900199 if a.minSdkVersion(ctx) == android.SdkVersion_Android10 {
Jooyung Han214bf372019-11-12 13:03:50 +0900200 // b/143654022 Q apexd can't understand newly added keys in apex_manifest.json
201 // prepare stripped-down version so that APEX modules built from R+ can be installed to Q
202 a.manifestJsonOut = android.PathForModuleOut(ctx, "apex_manifest.json")
203 ctx.Build(pctx, android.BuildParams{
204 Rule: stripApexManifestRule,
205 Input: manifestJsonFullOut,
206 Output: a.manifestJsonOut,
207 })
208 }
Jiyong Park09d77522019-11-18 11:16:27 +0900209
210 // from R+, protobuf binary format (.pb) is the standard format for apex_manifest
211 a.manifestPbOut = android.PathForModuleOut(ctx, "apex_manifest.pb")
212 ctx.Build(pctx, android.BuildParams{
213 Rule: pbApexManifestRule,
Jooyung Han214bf372019-11-12 13:03:50 +0900214 Input: manifestJsonFullOut,
Jiyong Park09d77522019-11-18 11:16:27 +0900215 Output: a.manifestPbOut,
216 })
217}
218
Jiyong Park19972c72020-01-28 20:05:29 +0900219func (a *apexBundle) buildNoticeFiles(ctx android.ModuleContext, apexFileName string) android.NoticeOutputs {
Jiyong Park09d77522019-11-18 11:16:27 +0900220 noticeFiles := []android.Path{}
221 for _, f := range a.filesInfo {
222 if f.module != nil {
223 notice := f.module.NoticeFile()
224 if notice.Valid() {
225 noticeFiles = append(noticeFiles, notice.Path())
226 }
227 }
228 }
229 // append the notice file specified in the apex module itself
230 if a.NoticeFile().Valid() {
231 noticeFiles = append(noticeFiles, a.NoticeFile().Path())
232 }
233
234 if len(noticeFiles) == 0 {
Jiyong Park19972c72020-01-28 20:05:29 +0900235 return android.NoticeOutputs{}
Jiyong Park09d77522019-11-18 11:16:27 +0900236 }
237
Jiyong Park19972c72020-01-28 20:05:29 +0900238 return android.BuildNoticeOutput(ctx, a.installDir, apexFileName, android.FirstUniquePaths(noticeFiles))
Jiyong Park09d77522019-11-18 11:16:27 +0900239}
240
Jiyong Park3a1602e2020-01-14 14:39:19 +0900241func (a *apexBundle) buildInstalledFilesFile(ctx android.ModuleContext, builtApex android.Path, imageDir android.Path) android.OutputPath {
242 output := android.PathForModuleOut(ctx, "installed-files.txt")
243 rule := android.NewRuleBuilder()
244 rule.Command().
245 Implicit(builtApex).
246 Text("(cd " + imageDir.String() + " ; ").
Jiyong Parkbd63a102020-02-08 12:40:05 +0900247 Text("find . \\( -type f -o -type l \\) -printf \"%s %p\\n\") ").
Jiyong Park3a1602e2020-01-14 14:39:19 +0900248 Text(" | sort -nr > ").
249 Output(output)
250 rule.Build(pctx, ctx, "installed-files."+a.Name(), "Installed files")
251 return output.OutputPath
252}
253
Jiyong Parkd93e1b12020-02-28 15:22:21 +0900254func (a *apexBundle) buildBundleConfig(ctx android.ModuleContext) android.OutputPath {
255 output := android.PathForModuleOut(ctx, "bundle_config.json")
256
Jiyong Parkaf8998c2020-02-28 16:51:07 +0900257 type ApkConfig struct {
258 Package_name string `json:"package_name"`
259 Apk_path string `json:"path"`
260 }
Jiyong Parkd93e1b12020-02-28 15:22:21 +0900261 config := struct {
262 Compression struct {
263 Uncompressed_glob []string `json:"uncompressed_glob"`
264 } `json:"compression"`
Jiyong Parkaf8998c2020-02-28 16:51:07 +0900265 Apex_config struct {
266 Apex_embedded_apk_config []ApkConfig `json:"apex_embedded_apk_config,omitempty"`
267 } `json:"apex_config,omitempty"`
Jiyong Parkd93e1b12020-02-28 15:22:21 +0900268 }{}
269
270 config.Compression.Uncompressed_glob = []string{
271 "apex_payload.img",
272 "apex_manifest.*",
273 }
Jiyong Parkaf8998c2020-02-28 16:51:07 +0900274
275 // collect the manifest names and paths of android apps
276 // if their manifest names are overridden
277 for _, fi := range a.filesInfo {
278 if fi.class != app {
279 continue
280 }
281 packageName := fi.overriddenPackageName
282 if packageName != "" {
283 config.Apex_config.Apex_embedded_apk_config = append(
284 config.Apex_config.Apex_embedded_apk_config,
285 ApkConfig{
286 Package_name: packageName,
287 Apk_path: fi.Path(),
288 })
289 }
290 }
291
Jiyong Parkd93e1b12020-02-28 15:22:21 +0900292 j, err := json.Marshal(config)
293 if err != nil {
294 panic(fmt.Errorf("error while marshalling to %q: %#v", output, err))
295 }
296
297 ctx.Build(pctx, android.BuildParams{
298 Rule: android.WriteFile,
299 Output: output,
300 Description: "Bundle Config " + output.String(),
301 Args: map[string]string{
302 "content": string(j),
303 },
304 })
305
306 return output.OutputPath
307}
308
Jiyong Park09d77522019-11-18 11:16:27 +0900309func (a *apexBundle) buildUnflattenedApex(ctx android.ModuleContext) {
310 var abis []string
311 for _, target := range ctx.MultiTargets() {
312 if len(target.Arch.Abi) > 0 {
313 abis = append(abis, target.Arch.Abi[0])
314 }
315 }
316
317 abis = android.FirstUniqueStrings(abis)
318
319 apexType := a.properties.ApexType
320 suffix := apexType.suffix()
Jiyong Park7cd10e32020-01-14 09:22:18 +0900321 var implicitInputs []android.Path
Jaewoong Jung1670ca02019-11-22 14:50:42 -0800322 unsignedOutputFile := android.PathForModuleOut(ctx, a.Name()+suffix+".unsigned")
Jiyong Park09d77522019-11-18 11:16:27 +0900323
Jiyong Park7cd10e32020-01-14 09:22:18 +0900324 // TODO(jiyong): construct the copy rules using RuleBuilder
325 var copyCommands []string
326 for _, fi := range a.filesInfo {
327 destPath := android.PathForModuleOut(ctx, "image"+suffix, fi.Path()).String()
328 copyCommands = append(copyCommands, "mkdir -p "+filepath.Dir(destPath))
329 if a.linkToSystemLib && fi.transitiveDep && fi.AvailableToPlatform() {
330 // TODO(jiyong): pathOnDevice should come from fi.module, not being calculated here
331 pathOnDevice := filepath.Join("/system", fi.Path())
332 copyCommands = append(copyCommands, "ln -sfn "+pathOnDevice+" "+destPath)
333 } else {
334 copyCommands = append(copyCommands, "cp -f "+fi.builtFile.String()+" "+destPath)
335 implicitInputs = append(implicitInputs, fi.builtFile)
336 }
337 // create additional symlinks pointing the file inside the APEX
338 for _, symlinkPath := range fi.SymlinkPaths() {
339 symlinkDest := android.PathForModuleOut(ctx, "image"+suffix, symlinkPath).String()
340 copyCommands = append(copyCommands, "ln -sfn "+filepath.Base(destPath)+" "+symlinkDest)
341 }
Jiyong Park09d77522019-11-18 11:16:27 +0900342 }
343
Jiyong Park7cd10e32020-01-14 09:22:18 +0900344 // TODO(jiyong): use RuleBuilder
345 var emitCommands []string
346 imageContentFile := android.PathForModuleOut(ctx, "content.txt")
Jooyung Han214bf372019-11-12 13:03:50 +0900347 emitCommands = append(emitCommands, "echo ./apex_manifest.pb >> "+imageContentFile.String())
Jooyung Han23b0adf2020-03-12 18:37:20 +0900348 if a.minSdkVersion(ctx) == android.SdkVersion_Android10 {
Jooyung Han214bf372019-11-12 13:03:50 +0900349 emitCommands = append(emitCommands, "echo ./apex_manifest.json >> "+imageContentFile.String())
350 }
Jiyong Park7cd10e32020-01-14 09:22:18 +0900351 for _, fi := range a.filesInfo {
352 emitCommands = append(emitCommands, "echo './"+fi.Path()+"' >> "+imageContentFile.String())
Jiyong Park09d77522019-11-18 11:16:27 +0900353 }
354 emitCommands = append(emitCommands, "sort -o "+imageContentFile.String()+" "+imageContentFile.String())
Jooyung Han214bf372019-11-12 13:03:50 +0900355 implicitInputs = append(implicitInputs, a.manifestPbOut)
Jiyong Park09d77522019-11-18 11:16:27 +0900356
357 if a.properties.Whitelisted_files != nil {
358 ctx.Build(pctx, android.BuildParams{
359 Rule: emitApexContentRule,
360 Implicits: implicitInputs,
361 Output: imageContentFile,
362 Description: "emit apex image content",
363 Args: map[string]string{
364 "emit_commands": strings.Join(emitCommands, " && "),
365 },
366 })
367 implicitInputs = append(implicitInputs, imageContentFile)
368 whitelistedFilesFile := android.PathForModuleSrc(ctx, proptools.String(a.properties.Whitelisted_files))
369
Jaewoong Jung1670ca02019-11-22 14:50:42 -0800370 phonyOutput := android.PathForModuleOut(ctx, a.Name()+"-diff-phony-output")
Jiyong Park09d77522019-11-18 11:16:27 +0900371 ctx.Build(pctx, android.BuildParams{
372 Rule: diffApexContentRule,
373 Implicits: implicitInputs,
374 Output: phonyOutput,
375 Description: "diff apex image content",
376 Args: map[string]string{
377 "whitelisted_files_file": whitelistedFilesFile.String(),
378 "image_content_file": imageContentFile.String(),
Jaewoong Jung1670ca02019-11-22 14:50:42 -0800379 "apex_module_name": a.Name(),
Jiyong Park09d77522019-11-18 11:16:27 +0900380 },
381 })
382
383 implicitInputs = append(implicitInputs, phonyOutput)
384 }
385
386 outHostBinDir := android.PathForOutput(ctx, "host", ctx.Config().PrebuiltOS(), "bin").String()
387 prebuiltSdkToolsBinDir := filepath.Join("prebuilts", "sdk", "tools", runtime.GOOS, "bin")
388
Jiyong Park3a1602e2020-01-14 14:39:19 +0900389 imageDir := android.PathForModuleOut(ctx, "image"+suffix)
Jiyong Park09d77522019-11-18 11:16:27 +0900390 if apexType == imageApex {
391 // files and dirs that will be created in APEX
392 var readOnlyPaths = []string{"apex_manifest.json", "apex_manifest.pb"}
393 var executablePaths []string // this also includes dirs
394 for _, f := range a.filesInfo {
395 pathInApex := filepath.Join(f.installDir, f.builtFile.Base())
396 if f.installDir == "bin" || strings.HasPrefix(f.installDir, "bin/") {
397 executablePaths = append(executablePaths, pathInApex)
398 for _, s := range f.symlinks {
399 executablePaths = append(executablePaths, filepath.Join(f.installDir, s))
400 }
401 } else {
402 readOnlyPaths = append(readOnlyPaths, pathInApex)
403 }
404 dir := f.installDir
405 for !android.InList(dir, executablePaths) && dir != "" {
406 executablePaths = append(executablePaths, dir)
407 dir, _ = filepath.Split(dir) // move up to the parent
408 if len(dir) > 0 {
409 // remove trailing slash
410 dir = dir[:len(dir)-1]
411 }
412 }
413 }
414 sort.Strings(readOnlyPaths)
415 sort.Strings(executablePaths)
416 cannedFsConfig := android.PathForModuleOut(ctx, "canned_fs_config")
417 ctx.Build(pctx, android.BuildParams{
418 Rule: generateFsConfig,
419 Output: cannedFsConfig,
420 Description: "generate fs config",
421 Args: map[string]string{
422 "ro_paths": strings.Join(readOnlyPaths, " "),
423 "exec_paths": strings.Join(executablePaths, " "),
424 },
425 })
426
Jiyong Park09d77522019-11-18 11:16:27 +0900427 optFlags := []string{}
428
429 // Additional implicit inputs.
Jooyung Han54aca7b2019-11-20 02:26:02 +0900430 implicitInputs = append(implicitInputs, cannedFsConfig, a.fileContexts, a.private_key_file, a.public_key_file)
Jiyong Park09d77522019-11-18 11:16:27 +0900431 optFlags = append(optFlags, "--pubkey "+a.public_key_file.String())
432
Jooyung Han27151d92019-12-16 17:45:32 +0900433 manifestPackageName := a.getOverrideManifestPackageName(ctx)
434 if manifestPackageName != "" {
Jiyong Park09d77522019-11-18 11:16:27 +0900435 optFlags = append(optFlags, "--override_apk_package_name "+manifestPackageName)
436 }
437
438 if a.properties.AndroidManifest != nil {
439 androidManifestFile := android.PathForModuleSrc(ctx, proptools.String(a.properties.AndroidManifest))
440 implicitInputs = append(implicitInputs, androidManifestFile)
441 optFlags = append(optFlags, "--android_manifest "+androidManifestFile.String())
442 }
443
444 targetSdkVersion := ctx.Config().DefaultAppTargetSdk()
Baligh Uddinf6201372020-01-24 23:15:44 +0000445 minSdkVersion := ctx.Config().DefaultAppTargetSdk()
Nikita Ioffedb10c132020-02-20 00:43:27 +0000446
Jooyung Han23b0adf2020-03-12 18:37:20 +0900447 if a.minSdkVersion(ctx) == android.SdkVersion_Android10 {
448 minSdkVersion = strconv.Itoa(a.minSdkVersion(ctx))
449 targetSdkVersion = strconv.Itoa(a.minSdkVersion(ctx))
Nikita Ioffedb10c132020-02-20 00:43:27 +0000450 }
451
Nikita Ioffe934c4f22020-03-02 16:58:11 +0000452 if java.UseApiFingerprint(ctx) {
453 targetSdkVersion = ctx.Config().PlatformSdkCodename() + fmt.Sprintf(".$$(cat %s)", java.ApiFingerprintPath(ctx).String())
Baligh Uddinf6201372020-01-24 23:15:44 +0000454 implicitInputs = append(implicitInputs, java.ApiFingerprintPath(ctx))
455 }
Nikita Ioffe934c4f22020-03-02 16:58:11 +0000456 if java.UseApiFingerprint(ctx) {
457 minSdkVersion = ctx.Config().PlatformSdkCodename() + fmt.Sprintf(".$$(cat %s)", java.ApiFingerprintPath(ctx).String())
Baligh Uddinf6201372020-01-24 23:15:44 +0000458 implicitInputs = append(implicitInputs, java.ApiFingerprintPath(ctx))
Jiyong Park09d77522019-11-18 11:16:27 +0900459 }
460 optFlags = append(optFlags, "--target_sdk_version "+targetSdkVersion)
Baligh Uddinf6201372020-01-24 23:15:44 +0000461 optFlags = append(optFlags, "--min_sdk_version "+minSdkVersion)
Jiyong Park09d77522019-11-18 11:16:27 +0900462
Baligh Uddin004d7172020-02-19 21:29:28 -0800463 if a.overridableProperties.Logging_parent != "" {
464 optFlags = append(optFlags, "--logging_parent ", a.overridableProperties.Logging_parent)
465 }
466
Jiyong Park19972c72020-01-28 20:05:29 +0900467 a.mergedNotices = a.buildNoticeFiles(ctx, a.Name()+suffix)
468 if a.mergedNotices.HtmlGzOutput.Valid() {
Jiyong Park09d77522019-11-18 11:16:27 +0900469 // If there's a NOTICE file, embed it as an asset file in the APEX.
Jiyong Park19972c72020-01-28 20:05:29 +0900470 implicitInputs = append(implicitInputs, a.mergedNotices.HtmlGzOutput.Path())
471 optFlags = append(optFlags, "--assets_dir "+filepath.Dir(a.mergedNotices.HtmlGzOutput.String()))
Jiyong Park09d77522019-11-18 11:16:27 +0900472 }
473
Nikita Ioffeb4b44c02020-01-02 23:01:39 +0000474 if ctx.ModuleDir() != "system/apex/apexd/apexd_testdata" && ctx.ModuleDir() != "system/apex/shim/build" && a.testOnlyShouldSkipHashtreeGeneration() {
Nikita Ioffec72b5dd2019-12-07 17:30:22 +0000475 ctx.PropertyErrorf("test_only_no_hashtree", "not available")
476 return
477 }
Jooyung Han23b0adf2020-03-12 18:37:20 +0900478 if a.minSdkVersion(ctx) > android.SdkVersion_Android10 || a.testOnlyShouldSkipHashtreeGeneration() {
Jiyong Park09d77522019-11-18 11:16:27 +0900479 // Apexes which are supposed to be installed in builtin dirs(/system, etc)
480 // don't need hashtree for activation. Therefore, by removing hashtree from
481 // apex bundle (filesystem image in it, to be specific), we can save storage.
482 optFlags = append(optFlags, "--no_hashtree")
483 }
484
485 if a.properties.Apex_name != nil {
486 // If apex_name is set, apexer can skip checking if key name matches with apex name.
487 // Note that apex_manifest is also mended.
488 optFlags = append(optFlags, "--do_not_check_keyname")
489 }
490
Jooyung Han23b0adf2020-03-12 18:37:20 +0900491 if a.minSdkVersion(ctx) == android.SdkVersion_Android10 {
Jooyung Han214bf372019-11-12 13:03:50 +0900492 implicitInputs = append(implicitInputs, a.manifestJsonOut)
493 optFlags = append(optFlags, "--manifest_json "+a.manifestJsonOut.String())
494 }
495
Jiyong Park09d77522019-11-18 11:16:27 +0900496 ctx.Build(pctx, android.BuildParams{
497 Rule: apexRule,
498 Implicits: implicitInputs,
499 Output: unsignedOutputFile,
500 Description: "apex (" + apexType.name() + ")",
501 Args: map[string]string{
Jooyung Han214bf372019-11-12 13:03:50 +0900502 "tool_path": outHostBinDir + ":" + prebuiltSdkToolsBinDir,
Jiyong Park3a1602e2020-01-14 14:39:19 +0900503 "image_dir": imageDir.String(),
Jooyung Han214bf372019-11-12 13:03:50 +0900504 "copy_commands": strings.Join(copyCommands, " && "),
505 "manifest": a.manifestPbOut.String(),
506 "file_contexts": a.fileContexts.String(),
507 "canned_fs_config": cannedFsConfig.String(),
508 "key": a.private_key_file.String(),
509 "opt_flags": strings.Join(optFlags, " "),
Jiyong Park09d77522019-11-18 11:16:27 +0900510 },
511 })
512
Jaewoong Jung1670ca02019-11-22 14:50:42 -0800513 apexProtoFile := android.PathForModuleOut(ctx, a.Name()+".pb"+suffix)
514 bundleModuleFile := android.PathForModuleOut(ctx, a.Name()+suffix+"-base.zip")
Jiyong Park09d77522019-11-18 11:16:27 +0900515 a.bundleModuleFile = bundleModuleFile
516
517 ctx.Build(pctx, android.BuildParams{
518 Rule: apexProtoConvertRule,
519 Input: unsignedOutputFile,
520 Output: apexProtoFile,
521 Description: "apex proto convert",
522 })
523
Jiyong Parkd93e1b12020-02-28 15:22:21 +0900524 bundleConfig := a.buildBundleConfig(ctx)
525
Jiyong Park09d77522019-11-18 11:16:27 +0900526 ctx.Build(pctx, android.BuildParams{
527 Rule: apexBundleRule,
528 Input: apexProtoFile,
Jiyong Parkd93e1b12020-02-28 15:22:21 +0900529 Implicit: bundleConfig,
Jiyong Park09d77522019-11-18 11:16:27 +0900530 Output: a.bundleModuleFile,
531 Description: "apex bundle module",
532 Args: map[string]string{
Jiyong Parkd93e1b12020-02-28 15:22:21 +0900533 "abi": strings.Join(abis, "."),
534 "config": bundleConfig.String(),
Jiyong Park09d77522019-11-18 11:16:27 +0900535 },
536 })
537 } else {
538 ctx.Build(pctx, android.BuildParams{
539 Rule: zipApexRule,
540 Implicits: implicitInputs,
541 Output: unsignedOutputFile,
542 Description: "apex (" + apexType.name() + ")",
543 Args: map[string]string{
Jooyung Han214bf372019-11-12 13:03:50 +0900544 "tool_path": outHostBinDir + ":" + prebuiltSdkToolsBinDir,
Jiyong Park3a1602e2020-01-14 14:39:19 +0900545 "image_dir": imageDir.String(),
Jooyung Han214bf372019-11-12 13:03:50 +0900546 "copy_commands": strings.Join(copyCommands, " && "),
547 "manifest": a.manifestPbOut.String(),
Jiyong Park09d77522019-11-18 11:16:27 +0900548 },
549 })
550 }
551
Jaewoong Jung1670ca02019-11-22 14:50:42 -0800552 a.outputFile = android.PathForModuleOut(ctx, a.Name()+suffix)
Jiyong Park09d77522019-11-18 11:16:27 +0900553 ctx.Build(pctx, android.BuildParams{
554 Rule: java.Signapk,
555 Description: "signapk",
556 Output: a.outputFile,
557 Input: unsignedOutputFile,
558 Implicits: []android.Path{
559 a.container_certificate_file,
560 a.container_private_key_file,
561 },
562 Args: map[string]string{
563 "certificates": a.container_certificate_file.String() + " " + a.container_private_key_file.String(),
564 "flags": "-a 4096", //alignment
565 },
566 })
567
568 // Install to $OUT/soong/{target,host}/.../apex
569 if a.installable() {
Jaewoong Jung1670ca02019-11-22 14:50:42 -0800570 ctx.InstallFile(a.installDir, a.Name()+suffix, a.outputFile)
Jiyong Park09d77522019-11-18 11:16:27 +0900571 }
572 a.buildFilesInfo(ctx)
Jiyong Park3a1602e2020-01-14 14:39:19 +0900573
574 // installed-files.txt is dist'ed
575 a.installedFilesFile = a.buildInstalledFilesFile(ctx, a.outputFile, imageDir)
Jiyong Park09d77522019-11-18 11:16:27 +0900576}
577
578func (a *apexBundle) buildFlattenedApex(ctx android.ModuleContext) {
579 // Temporarily wrap the original `ctx` into a `flattenedApexContext` to have it
580 // reply true to `InstallBypassMake()` (thus making the call
581 // `android.PathForModuleInstall` below use `android.pathForInstallInMakeDir`
582 // instead of `android.PathForOutput`) to return the correct path to the flattened
583 // APEX (as its contents is installed by Make, not Soong).
584 factx := flattenedApexContext{ctx}
Jiyong Parka5948012020-02-07 10:15:14 +0900585 apexBundleName := a.Name()
586 a.outputFile = android.PathForModuleInstall(&factx, "apex", apexBundleName)
Jiyong Park09d77522019-11-18 11:16:27 +0900587
Jiyong Park317645e2019-12-05 13:20:58 +0900588 if a.installable() && a.GetOverriddenBy() == "" {
Jiyong Parka5948012020-02-07 10:15:14 +0900589 installPath := android.PathForModuleInstall(ctx, "apex", apexBundleName)
Jooyung Han54aca7b2019-11-20 02:26:02 +0900590 devicePath := android.InstallPathToOnDevicePath(ctx, installPath)
Jiyong Parka5948012020-02-07 10:15:14 +0900591 addFlattenedFileContextsInfos(ctx, apexBundleName+":"+devicePath+":"+a.fileContexts.String())
Jooyung Han54aca7b2019-11-20 02:26:02 +0900592 }
Jiyong Park09d77522019-11-18 11:16:27 +0900593 a.buildFilesInfo(ctx)
594}
595
596func (a *apexBundle) setCertificateAndPrivateKey(ctx android.ModuleContext) {
Jooyung Hanf121a652019-12-17 14:30:11 +0900597 if a.container_certificate_file == nil {
598 cert := String(a.properties.Certificate)
599 if cert == "" {
600 pem, key := ctx.Config().DefaultAppCertificate(ctx)
601 a.container_certificate_file = pem
602 a.container_private_key_file = key
603 } else {
604 defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
605 a.container_certificate_file = defaultDir.Join(ctx, cert+".x509.pem")
606 a.container_private_key_file = defaultDir.Join(ctx, cert+".pk8")
607 }
Jiyong Park09d77522019-11-18 11:16:27 +0900608 }
609}
610
611func (a *apexBundle) buildFilesInfo(ctx android.ModuleContext) {
612 if a.installable() {
Jooyung Han214bf372019-11-12 13:03:50 +0900613 // 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 +0900614 // with other ordinary files.
Jiyong Park7cd10e32020-01-14 09:22:18 +0900615 a.filesInfo = append(a.filesInfo, newApexFile(ctx, a.manifestPbOut, "apex_manifest.pb", ".", etc, nil))
Jiyong Park09d77522019-11-18 11:16:27 +0900616
617 // rename to apex_pubkey
618 copiedPubkey := android.PathForModuleOut(ctx, "apex_pubkey")
619 ctx.Build(pctx, android.BuildParams{
620 Rule: android.Cp,
621 Input: a.public_key_file,
622 Output: copiedPubkey,
623 })
Jiyong Park7cd10e32020-01-14 09:22:18 +0900624 a.filesInfo = append(a.filesInfo, newApexFile(ctx, copiedPubkey, "apex_pubkey", ".", etc, nil))
Jiyong Park09d77522019-11-18 11:16:27 +0900625
626 if a.properties.ApexType == flattenedApex {
Jiyong Parka5948012020-02-07 10:15:14 +0900627 apexBundleName := a.Name()
Jiyong Park09d77522019-11-18 11:16:27 +0900628 for _, fi := range a.filesInfo {
Jiyong Parka5948012020-02-07 10:15:14 +0900629 dir := filepath.Join("apex", apexBundleName, fi.installDir)
Jiyong Park09d77522019-11-18 11:16:27 +0900630 target := ctx.InstallFile(android.PathForModuleInstall(ctx, dir), fi.builtFile.Base(), fi.builtFile)
631 for _, sym := range fi.symlinks {
632 ctx.InstallSymlink(android.PathForModuleInstall(ctx, dir), sym, target)
633 }
634 }
635 }
636 }
637}
Jooyung Han27151d92019-12-16 17:45:32 +0900638
639func (a *apexBundle) getOverrideManifestPackageName(ctx android.ModuleContext) string {
640 // For VNDK APEXes, check "com.android.vndk" in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES
641 // to see if it should be overridden because their <apex name> is dynamically generated
642 // according to its VNDK version.
643 if a.vndkApex {
644 overrideName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(vndkApexName)
645 if overridden {
646 return strings.Replace(*a.properties.Apex_name, vndkApexName, overrideName, 1)
647 }
648 return ""
649 }
Jiyong Parka519c542020-03-03 11:45:41 +0900650 manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
Jooyung Han27151d92019-12-16 17:45:32 +0900651 if overridden {
652 return manifestPackageName
653 }
654 return ""
655}
Jiyong Park83dc74b2020-01-14 18:38:44 +0900656
657func (a *apexBundle) buildApexDependencyInfo(ctx android.ModuleContext) {
658 if !a.primaryApexType {
659 return
660 }
661
662 if a.properties.IsCoverageVariant {
663 // Otherwise, we will have duplicated rules for coverage and
664 // non-coverage variants of the same APEX
665 return
666 }
667
668 if ctx.Host() {
669 // No need to generate dependency info for host variant
670 return
671 }
672
Jiyong Park83dc74b2020-01-14 18:38:44 +0900673 var content strings.Builder
Jiyong Park678c8812020-02-07 17:25:49 +0900674 for _, key := range android.SortedStringKeys(a.depInfos) {
675 info := a.depInfos[key]
676 toName := info.to
677 if info.isExternal {
678 toName = toName + " (external)"
679 }
680 fmt.Fprintf(&content, "%s <- %s\\n", toName, strings.Join(android.SortedUniqueStrings(info.from), ", "))
Jiyong Park83dc74b2020-01-14 18:38:44 +0900681 }
682
683 depsInfoFile := android.PathForOutput(ctx, a.Name()+"-deps-info.txt")
684 ctx.Build(pctx, android.BuildParams{
685 Rule: android.WriteFile,
686 Description: "Dependency Info",
687 Output: depsInfoFile,
688 Args: map[string]string{
689 "content": content.String(),
690 },
691 })
692
693 ctx.Build(pctx, android.BuildParams{
694 Rule: android.Phony,
695 Output: android.PathForPhony(ctx, a.Name()+"-deps-info"),
696 Inputs: []android.Path{depsInfoFile},
697 })
698}