Kiyoung Kim | 62abd12 | 2020-10-06 17:16:44 +0900 | [diff] [blame] | 1 | // Copyright (C) 2020 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 | |
| 15 | package linkerconfig |
| 16 | |
| 17 | import ( |
Jooyung Han | a0436a3 | 2021-04-15 05:11:00 +0900 | [diff] [blame] | 18 | "fmt" |
Jiyong Park | fa61613 | 2021-04-20 11:36:40 +0900 | [diff] [blame] | 19 | "sort" |
| 20 | "strings" |
Kiyoung Kim | 62abd12 | 2020-10-06 17:16:44 +0900 | [diff] [blame] | 21 | |
| 22 | "github.com/google/blueprint/proptools" |
Jiyong Park | fa61613 | 2021-04-20 11:36:40 +0900 | [diff] [blame] | 23 | |
| 24 | "android/soong/android" |
Liz Kammer | 45faf8f | 2022-06-02 16:00:54 -0400 | [diff] [blame] | 25 | "android/soong/bazel" |
Jiyong Park | fa61613 | 2021-04-20 11:36:40 +0900 | [diff] [blame] | 26 | "android/soong/cc" |
| 27 | "android/soong/etc" |
Kiyoung Kim | 62abd12 | 2020-10-06 17:16:44 +0900 | [diff] [blame] | 28 | ) |
| 29 | |
| 30 | var ( |
| 31 | pctx = android.NewPackageContext("android/soong/linkerconfig") |
| 32 | ) |
| 33 | |
| 34 | func init() { |
| 35 | pctx.HostBinToolVariable("conv_linker_config", "conv_linker_config") |
Paul Duffin | 2a2fb66 | 2021-03-29 01:14:55 +0100 | [diff] [blame] | 36 | registerLinkerConfigBuildComponent(android.InitRegistrationContext) |
| 37 | } |
| 38 | |
| 39 | func registerLinkerConfigBuildComponent(ctx android.RegistrationContext) { |
Liz Kammer | 45faf8f | 2022-06-02 16:00:54 -0400 | [diff] [blame] | 40 | ctx.RegisterModuleType("linker_config", LinkerConfigFactory) |
Kiyoung Kim | 62abd12 | 2020-10-06 17:16:44 +0900 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | type linkerConfigProperties struct { |
| 44 | // source linker configuration property file |
| 45 | Src *string `android:"path"` |
| 46 | |
| 47 | // If set to true, allow module to be installed to one of the partitions. |
| 48 | // Default value is true. |
| 49 | // Installable should be marked as false for APEX configuration to avoid |
| 50 | // conflicts of configuration on /system/etc directory. |
| 51 | Installable *bool |
| 52 | } |
| 53 | |
| 54 | type linkerConfig struct { |
| 55 | android.ModuleBase |
Liz Kammer | 45faf8f | 2022-06-02 16:00:54 -0400 | [diff] [blame] | 56 | android.BazelModuleBase |
Kiyoung Kim | 62abd12 | 2020-10-06 17:16:44 +0900 | [diff] [blame] | 57 | properties linkerConfigProperties |
| 58 | |
| 59 | outputFilePath android.OutputPath |
| 60 | installDirPath android.InstallPath |
| 61 | } |
| 62 | |
| 63 | // Implement PrebuiltEtcModule interface to fit in APEX prebuilt list. |
| 64 | var _ etc.PrebuiltEtcModule = (*linkerConfig)(nil) |
| 65 | |
| 66 | func (l *linkerConfig) BaseDir() string { |
| 67 | return "etc" |
| 68 | } |
| 69 | |
| 70 | func (l *linkerConfig) SubDir() string { |
| 71 | return "" |
| 72 | } |
| 73 | |
| 74 | func (l *linkerConfig) OutputFile() android.OutputPath { |
| 75 | return l.outputFilePath |
| 76 | } |
| 77 | |
Jooyung Han | a0436a3 | 2021-04-15 05:11:00 +0900 | [diff] [blame] | 78 | var _ android.OutputFileProducer = (*linkerConfig)(nil) |
| 79 | |
| 80 | func (l *linkerConfig) OutputFiles(tag string) (android.Paths, error) { |
| 81 | switch tag { |
| 82 | case "": |
| 83 | return android.Paths{l.outputFilePath}, nil |
| 84 | default: |
| 85 | return nil, fmt.Errorf("unsupported module reference tag %q", tag) |
| 86 | } |
| 87 | } |
| 88 | |
Kiyoung Kim | 62abd12 | 2020-10-06 17:16:44 +0900 | [diff] [blame] | 89 | func (l *linkerConfig) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Jiyong Park | fa61613 | 2021-04-20 11:36:40 +0900 | [diff] [blame] | 90 | input := android.PathForModuleSrc(ctx, android.String(l.properties.Src)) |
| 91 | output := android.PathForModuleOut(ctx, "linker.config.pb").OutputPath |
Kiyoung Kim | 62abd12 | 2020-10-06 17:16:44 +0900 | [diff] [blame] | 92 | |
Jiyong Park | fa61613 | 2021-04-20 11:36:40 +0900 | [diff] [blame] | 93 | builder := android.NewRuleBuilder(pctx, ctx) |
| 94 | BuildLinkerConfig(ctx, builder, input, nil, output) |
| 95 | builder.Build("conv_linker_config", "Generate linker config protobuf "+output.String()) |
| 96 | |
| 97 | l.outputFilePath = output |
| 98 | l.installDirPath = android.PathForModuleInstall(ctx, "etc") |
Jooyung Han | c6a91ec | 2021-04-15 04:41:13 +0900 | [diff] [blame] | 99 | if !proptools.BoolDefault(l.properties.Installable, true) { |
| 100 | l.SkipInstall() |
Kiyoung Kim | 62abd12 | 2020-10-06 17:16:44 +0900 | [diff] [blame] | 101 | } |
Jooyung Han | c6a91ec | 2021-04-15 04:41:13 +0900 | [diff] [blame] | 102 | ctx.InstallFile(l.installDirPath, l.outputFilePath.Base(), l.outputFilePath) |
Kiyoung Kim | 62abd12 | 2020-10-06 17:16:44 +0900 | [diff] [blame] | 103 | } |
| 104 | |
Liz Kammer | 45faf8f | 2022-06-02 16:00:54 -0400 | [diff] [blame] | 105 | type linkerConfigAttributes struct { |
| 106 | Src bazel.LabelAttribute |
| 107 | } |
| 108 | |
| 109 | func (l *linkerConfig) ConvertWithBp2build(ctx android.TopDownMutatorContext) { |
| 110 | if l.properties.Src == nil { |
| 111 | ctx.PropertyErrorf("src", "empty src is not supported") |
| 112 | return |
| 113 | } |
| 114 | src := android.BazelLabelForModuleSrcSingle(ctx, *l.properties.Src) |
| 115 | targetModuleProperties := bazel.BazelTargetModuleProperties{ |
| 116 | Rule_class: "linker_config", |
| 117 | Bzl_load_location: "//build/bazel/rules:linker_config.bzl", |
| 118 | } |
| 119 | ctx.CreateBazelTargetModule( |
| 120 | targetModuleProperties, |
| 121 | android.CommonAttributes{Name: l.Name()}, |
| 122 | &linkerConfigAttributes{ |
| 123 | Src: bazel.LabelAttribute{Value: &src}, |
| 124 | }) |
| 125 | } |
| 126 | |
Jiyong Park | fa61613 | 2021-04-20 11:36:40 +0900 | [diff] [blame] | 127 | func BuildLinkerConfig(ctx android.ModuleContext, builder *android.RuleBuilder, |
| 128 | input android.Path, otherModules []android.Module, output android.OutputPath) { |
| 129 | |
| 130 | // First, convert the input json to protobuf format |
| 131 | interimOutput := android.PathForModuleOut(ctx, "temp.pb") |
| 132 | builder.Command(). |
| 133 | BuiltTool("conv_linker_config"). |
| 134 | Flag("proto"). |
| 135 | FlagWithInput("-s ", input). |
| 136 | FlagWithOutput("-o ", interimOutput) |
| 137 | |
| 138 | // Secondly, if there's provideLibs gathered from otherModules, append them |
| 139 | var provideLibs []string |
| 140 | for _, m := range otherModules { |
| 141 | if c, ok := m.(*cc.Module); ok && cc.IsStubTarget(c) { |
| 142 | for _, ps := range c.PackagingSpecs() { |
| 143 | provideLibs = append(provideLibs, ps.FileName()) |
| 144 | } |
| 145 | } |
| 146 | } |
| 147 | provideLibs = android.FirstUniqueStrings(provideLibs) |
| 148 | sort.Strings(provideLibs) |
| 149 | if len(provideLibs) > 0 { |
| 150 | builder.Command(). |
| 151 | BuiltTool("conv_linker_config"). |
| 152 | Flag("append"). |
| 153 | FlagWithInput("-s ", interimOutput). |
| 154 | FlagWithOutput("-o ", output). |
| 155 | FlagWithArg("--key ", "provideLibs"). |
| 156 | FlagWithArg("--value ", proptools.ShellEscapeIncludingSpaces(strings.Join(provideLibs, " "))) |
| 157 | } else { |
| 158 | // If nothing to add, just cp to the final output |
| 159 | builder.Command().Text("cp").Input(interimOutput).Output(output) |
| 160 | } |
| 161 | builder.Temporary(interimOutput) |
| 162 | builder.DeleteTemporaryFiles() |
| 163 | } |
| 164 | |
Kiyoung Kim | 62abd12 | 2020-10-06 17:16:44 +0900 | [diff] [blame] | 165 | // linker_config generates protobuf file from json file. This protobuf file will be used from |
| 166 | // linkerconfig while generating ld.config.txt. Format of this file can be found from |
| 167 | // https://android.googlesource.com/platform/system/linkerconfig/+/master/README.md |
Liz Kammer | 45faf8f | 2022-06-02 16:00:54 -0400 | [diff] [blame] | 168 | func LinkerConfigFactory() android.Module { |
Kiyoung Kim | 62abd12 | 2020-10-06 17:16:44 +0900 | [diff] [blame] | 169 | m := &linkerConfig{} |
| 170 | m.AddProperties(&m.properties) |
| 171 | android.InitAndroidArchModule(m, android.HostAndDeviceSupported, android.MultilibFirst) |
Liz Kammer | 45faf8f | 2022-06-02 16:00:54 -0400 | [diff] [blame] | 172 | android.InitBazelModule(m) |
Kiyoung Kim | 62abd12 | 2020-10-06 17:16:44 +0900 | [diff] [blame] | 173 | return m |
| 174 | } |
| 175 | |
| 176 | func (l *linkerConfig) AndroidMkEntries() []android.AndroidMkEntries { |
| 177 | installable := proptools.BoolDefault(l.properties.Installable, true) |
| 178 | return []android.AndroidMkEntries{android.AndroidMkEntries{ |
| 179 | Class: "ETC", |
| 180 | OutputFile: android.OptionalPathForPath(l.outputFilePath), |
| 181 | ExtraEntries: []android.AndroidMkExtraEntriesFunc{ |
Colin Cross | aa25553 | 2020-07-03 13:18:24 -0700 | [diff] [blame] | 182 | func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) { |
Colin Cross | c68db4b | 2021-11-11 18:59:15 -0800 | [diff] [blame] | 183 | entries.SetString("LOCAL_MODULE_PATH", l.installDirPath.String()) |
Kiyoung Kim | 62abd12 | 2020-10-06 17:16:44 +0900 | [diff] [blame] | 184 | entries.SetString("LOCAL_INSTALLED_MODULE_STEM", l.outputFilePath.Base()) |
| 185 | entries.SetBoolIfTrue("LOCAL_UNINSTALLABLE_MODULE", !installable) |
Kiyoung Kim | 62abd12 | 2020-10-06 17:16:44 +0900 | [diff] [blame] | 186 | }, |
| 187 | }, |
| 188 | }} |
| 189 | } |