blob: 5e7e922cf579867cf7d495d96c13e9c6446fe747 [file] [log] [blame]
Ivan Lozanoffee3342019-08-27 12:03:00 -07001// Copyright 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 rust
16
17import (
Chris Parsons637458d2023-09-19 20:09:00 +000018 "fmt"
19
Ivan Lozanoffee3342019-08-27 12:03:00 -070020 "android/soong/android"
Vinh Tran093a57e2023-08-24 12:10:49 -040021 "android/soong/bazel"
Ivan Lozanoffee3342019-08-27 12:03:00 -070022)
23
24func init() {
25 android.RegisterModuleType("rust_binary", RustBinaryFactory)
26 android.RegisterModuleType("rust_binary_host", RustBinaryHostFactory)
27}
28
29type BinaryCompilerProperties struct {
Ivan Lozanobf63d002020-10-02 10:03:23 -040030 // Builds this binary as a static binary. Implies prefer_rlib true.
31 //
32 // Static executables currently only support for bionic targets. Non-bionic targets will not produce a fully static
33 // binary, but will still implicitly imply prefer_rlib true.
34 Static_executable *bool `android:"arch_variant"`
Ivan Lozanoffee3342019-08-27 12:03:00 -070035}
36
Ivan Lozano21fa0a52021-11-01 09:19:45 -040037type binaryInterface interface {
38 binary() bool
39 staticallyLinked() bool
Ivan Lozano62cd0382021-11-01 10:27:54 -040040 testBinary() bool
Ivan Lozano21fa0a52021-11-01 09:19:45 -040041}
42
Ivan Lozanoffee3342019-08-27 12:03:00 -070043type binaryDecorator struct {
44 *baseCompiler
ThiƩbaud Weksteenfabaff62020-08-27 13:48:36 +020045 stripper Stripper
Ivan Lozanoffee3342019-08-27 12:03:00 -070046
Ivan Lozano8a23fa42020-06-16 10:26:57 -040047 Properties BinaryCompilerProperties
Ivan Lozanoffee3342019-08-27 12:03:00 -070048}
49
50var _ compiler = (*binaryDecorator)(nil)
51
52// rust_binary produces a binary that is runnable on a device.
53func RustBinaryFactory() android.Module {
54 module, _ := NewRustBinary(android.HostAndDeviceSupported)
55 return module.Init()
56}
57
58func RustBinaryHostFactory() android.Module {
59 module, _ := NewRustBinary(android.HostSupported)
60 return module.Init()
61}
62
63func NewRustBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) {
64 module := newModule(hod, android.MultilibFirst)
65
Vinh Tran093a57e2023-08-24 12:10:49 -040066 android.InitBazelModule(module)
67
Ivan Lozanoffee3342019-08-27 12:03:00 -070068 binary := &binaryDecorator{
Chih-Hung Hsieh9a4a7ba2019-12-12 19:36:05 -080069 baseCompiler: NewBaseCompiler("bin", "", InstallInSystem),
Ivan Lozanoffee3342019-08-27 12:03:00 -070070 }
71
72 module.compiler = binary
73
74 return module, binary
75}
76
Ivan Lozanoffee3342019-08-27 12:03:00 -070077func (binary *binaryDecorator) compilerFlags(ctx ModuleContext, flags Flags) Flags {
78 flags = binary.baseCompiler.compilerFlags(ctx, flags)
Ivan Lozanof1c84332019-09-20 11:00:37 -070079
80 if ctx.toolchain().Bionic() {
Ivan Lozanob2df9f82019-11-05 12:16:46 -080081 // no-undefined-version breaks dylib compilation since __rust_*alloc* functions aren't defined,
82 // but we can apply this to binaries.
Ivan Lozanof1c84332019-09-20 11:00:37 -070083 flags.LinkFlags = append(flags.LinkFlags,
Colin Cross004bd3f2023-10-02 11:39:17 -070084 "-Wl,--gc-sections",
Ivan Lozanof1c84332019-09-20 11:00:37 -070085 "-Wl,-z,nocopyreloc",
86 "-Wl,--no-undefined-version")
Ivan Lozanobf63d002020-10-02 10:03:23 -040087
88 if Bool(binary.Properties.Static_executable) {
89 flags.LinkFlags = append(flags.LinkFlags, "-static")
90 flags.RustFlags = append(flags.RustFlags, "-C relocation-model=static")
91 }
Ivan Lozanof1c84332019-09-20 11:00:37 -070092 }
93
Ivan Lozanoffee3342019-08-27 12:03:00 -070094 return flags
95}
96
97func (binary *binaryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps {
98 deps = binary.baseCompiler.compilerDeps(ctx, deps)
99
Colin Crosse32f0932022-01-23 20:48:36 -0800100 static := Bool(binary.Properties.Static_executable)
Ivan Lozanof1c84332019-09-20 11:00:37 -0700101 if ctx.toolchain().Bionic() {
Colin Crosse32f0932022-01-23 20:48:36 -0800102 deps = bionicDeps(ctx, deps, static)
103 if static {
Colin Crossfe605e12022-01-23 20:46:16 -0800104 deps.CrtBegin = []string{"crtbegin_static"}
Ivan Lozanobf63d002020-10-02 10:03:23 -0400105 } else {
Colin Crosse32f0932022-01-23 20:48:36 -0800106 deps.CrtBegin = []string{"crtbegin_dynamic"}
107 }
108 deps.CrtEnd = []string{"crtend_android"}
109 } else if ctx.Os() == android.LinuxMusl {
110 deps = muslDeps(ctx, deps, static)
111 if static {
112 deps.CrtBegin = []string{"libc_musl_crtbegin_static"}
113 } else {
Colin Cross9382c062022-09-30 15:11:47 -0700114 deps.CrtBegin = []string{"libc_musl_crtbegin_dynamic"}
Ivan Lozanobf63d002020-10-02 10:03:23 -0400115 }
Colin Crossfe605e12022-01-23 20:46:16 -0800116 deps.CrtEnd = []string{"libc_musl_crtend"}
Ivan Lozanof1c84332019-09-20 11:00:37 -0700117 }
118
Ivan Lozanoffee3342019-08-27 12:03:00 -0700119 return deps
120}
121
122func (binary *binaryDecorator) compilerProps() []interface{} {
123 return append(binary.baseCompiler.compilerProps(),
ThiƩbaud Weksteenfabaff62020-08-27 13:48:36 +0200124 &binary.Properties,
125 &binary.stripper.StripProperties)
Ivan Lozanoffee3342019-08-27 12:03:00 -0700126}
127
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -0400128func (binary *binaryDecorator) nativeCoverage() bool {
129 return true
130}
131
Ivan Lozanobf63d002020-10-02 10:03:23 -0400132func (binary *binaryDecorator) preferRlib() bool {
Ivan Lozanoea086132020-12-08 14:43:00 -0500133 return Bool(binary.baseCompiler.Properties.Prefer_rlib) || Bool(binary.Properties.Static_executable)
Ivan Lozanobf63d002020-10-02 10:03:23 -0400134}
135
Sasha Smundaka76acba2022-04-18 20:12:56 -0700136func (binary *binaryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) buildOutput {
Ivan Lozanoffee3342019-08-27 12:03:00 -0700137 fileName := binary.getStem(ctx) + ctx.toolchain().ExecutableSuffix()
Ivan Lozanoffee3342019-08-27 12:03:00 -0700138 outputFile := android.PathForModuleOut(ctx, fileName)
Sasha Smundaka76acba2022-04-18 20:12:56 -0700139 ret := buildOutput{outputFile: outputFile}
Matthew Maurera28404a2023-11-20 23:33:28 +0000140 crateRootPath := crateRootPath(ctx, binary)
Ivan Lozanoffee3342019-08-27 12:03:00 -0700141
142 flags.RustFlags = append(flags.RustFlags, deps.depFlags...)
Ivan Lozano3dfa12d2021-02-04 11:29:41 -0500143 flags.LinkFlags = append(flags.LinkFlags, deps.depLinkFlags...)
Colin Cross004bd3f2023-10-02 11:39:17 -0700144 flags.LinkFlags = append(flags.LinkFlags, deps.linkObjects...)
Ivan Lozanoffee3342019-08-27 12:03:00 -0700145
Ivan Lozano8d10fc32021-11-05 16:36:47 -0400146 if binary.stripper.NeedsStrip(ctx) {
147 strippedOutputFile := outputFile
148 outputFile = android.PathForModuleOut(ctx, "unstripped", fileName)
149 binary.stripper.StripExecutableOrSharedLib(ctx, outputFile, strippedOutputFile)
150
151 binary.baseCompiler.strippedOutputFile = android.OptionalPathForPath(strippedOutputFile)
152 }
153 binary.baseCompiler.unstrippedOutputFile = outputFile
154
Sam Delmerico63ca14e2023-09-25 12:13:17 +0000155 ret.kytheFile = TransformSrcToBinary(ctx, crateRootPath, deps, flags, outputFile).kytheFile
Ivan Lozano8d10fc32021-11-05 16:36:47 -0400156 return ret
Ivan Lozanoffee3342019-08-27 12:03:00 -0700157}
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -0400158
Liz Kammer356f7d42021-01-26 09:18:53 -0500159func (binary *binaryDecorator) autoDep(ctx android.BottomUpMutatorContext) autoDep {
Ivan Lozano042504f2020-08-18 14:31:23 -0400160 // Binaries default to dylib dependencies for device, rlib for host.
Ivan Lozanobf63d002020-10-02 10:03:23 -0400161 if binary.preferRlib() {
Ivan Lozano11200872020-09-28 11:56:30 -0400162 return rlibAutoDep
Ivan Lozanoea086132020-12-08 14:43:00 -0500163 } else if ctx.Device() {
Matthew Maurer0f003b12020-06-29 14:34:06 -0700164 return dylibAutoDep
165 } else {
166 return rlibAutoDep
167 }
168}
Ivan Lozano11200872020-09-28 11:56:30 -0400169
Ivan Lozanodd055472020-09-28 13:22:45 -0400170func (binary *binaryDecorator) stdLinkage(ctx *depsContext) RustLinkage {
Ivan Lozanobf63d002020-10-02 10:03:23 -0400171 if binary.preferRlib() {
Ivan Lozanodd055472020-09-28 13:22:45 -0400172 return RlibLinkage
173 }
174 return binary.baseCompiler.stdLinkage(ctx)
Ivan Lozano11200872020-09-28 11:56:30 -0400175}
Ivan Lozano21fa0a52021-11-01 09:19:45 -0400176
177func (binary *binaryDecorator) binary() bool {
178 return true
179}
180
181func (binary *binaryDecorator) staticallyLinked() bool {
182 return Bool(binary.Properties.Static_executable)
183}
Ivan Lozano62cd0382021-11-01 10:27:54 -0400184
185func (binary *binaryDecorator) testBinary() bool {
186 return false
187}
Vinh Tran093a57e2023-08-24 12:10:49 -0400188
189type rustBinaryLibraryAttributes struct {
190 Srcs bazel.LabelListAttribute
191 Compile_data bazel.LabelListAttribute
192 Crate_name bazel.StringAttribute
193 Edition bazel.StringAttribute
194 Crate_features bazel.StringListAttribute
195 Deps bazel.LabelListAttribute
196 Proc_macro_deps bazel.LabelListAttribute
197 Rustc_flags bazel.StringListAttribute
198}
199
Chris Parsons637458d2023-09-19 20:09:00 +0000200func binaryBp2build(ctx android.Bp2buildMutatorContext, m *Module) {
Vinh Tran093a57e2023-08-24 12:10:49 -0400201 binary := m.compiler.(*binaryDecorator)
202
203 var srcs bazel.LabelList
204 var compileData bazel.LabelList
205
206 if binary.baseCompiler.Properties.Srcs[0] == "src/main.rs" {
207 srcs = android.BazelLabelForModuleSrc(ctx, []string{"src/**/*.rs"})
208 compileData = android.BazelLabelForModuleSrc(
209 ctx,
210 []string{
211 "src/**/*.proto",
212 "examples/**/*.rs",
213 "**/*.md",
214 "templates/**/*.template",
215 },
216 )
217 } else {
218 srcs = android.BazelLabelForModuleSrc(ctx, binary.baseCompiler.Properties.Srcs)
219 }
220
221 deps := android.BazelLabelForModuleDeps(ctx, append(
222 binary.baseCompiler.Properties.Rustlibs,
223 ))
224
225 procMacroDeps := android.BazelLabelForModuleDeps(ctx, binary.baseCompiler.Properties.Proc_macros)
226
227 var rustcFLags []string
228 for _, cfg := range binary.baseCompiler.Properties.Cfgs {
229 rustcFLags = append(rustcFLags, fmt.Sprintf("--cfg=%s", cfg))
230 }
231
232 attrs := &rustBinaryLibraryAttributes{
233 Srcs: bazel.MakeLabelListAttribute(
234 srcs,
235 ),
236 Compile_data: bazel.MakeLabelListAttribute(
237 compileData,
238 ),
239 Crate_name: bazel.StringAttribute{
240 Value: &binary.baseCompiler.Properties.Crate_name,
241 },
242 Edition: bazel.StringAttribute{
243 Value: binary.baseCompiler.Properties.Edition,
244 },
245 Crate_features: bazel.StringListAttribute{
246 Value: binary.baseCompiler.Properties.Features,
247 },
248 Deps: bazel.MakeLabelListAttribute(
249 deps,
250 ),
251 Proc_macro_deps: bazel.MakeLabelListAttribute(
252 procMacroDeps,
253 ),
254 Rustc_flags: bazel.StringListAttribute{
255 Value: append(
256 rustcFLags,
257 binary.baseCompiler.Properties.Flags...,
258 ),
259 },
260 }
261
262 ctx.CreateBazelTargetModule(
263 bazel.BazelTargetModuleProperties{
264 Rule_class: "rust_binary",
265 Bzl_load_location: "@rules_rust//rust:defs.bzl",
266 },
267 android.CommonAttributes{
268 Name: m.Name(),
269 },
270 attrs,
271 )
272}