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