blob: f00e491cc240354ca8fada23c6fe4be46f44b659 [file] [log] [blame]
Jihoon Kang98047cf2024-10-02 17:13:54 +00001// Copyright (C) 2024 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 fsgen
16
17import (
Cole Faust92ccbe22024-10-03 14:38:37 -070018 "crypto/sha256"
Jihoon Kang98047cf2024-10-02 17:13:54 +000019 "fmt"
Spandan Das312cc412024-10-29 18:20:11 +000020 "path/filepath"
Cole Fauste1676122024-12-03 17:32:25 -080021 "slices"
Jihoon Kang98047cf2024-10-02 17:13:54 +000022 "strconv"
mrziwang8f86c882024-10-03 12:34:33 -070023 "strings"
mrziwang8f86c882024-10-03 12:34:33 -070024
25 "android/soong/android"
26 "android/soong/filesystem"
Spandan Das5e336422024-11-01 22:31:20 +000027 "android/soong/kernel"
Jihoon Kang98047cf2024-10-02 17:13:54 +000028
Cole Faust92ccbe22024-10-03 14:38:37 -070029 "github.com/google/blueprint"
mrziwang8f86c882024-10-03 12:34:33 -070030 "github.com/google/blueprint/parser"
Jihoon Kang98047cf2024-10-02 17:13:54 +000031 "github.com/google/blueprint/proptools"
32)
33
Cole Faust92ccbe22024-10-03 14:38:37 -070034var pctx = android.NewPackageContext("android/soong/fsgen")
35
Jihoon Kang98047cf2024-10-02 17:13:54 +000036func init() {
37 registerBuildComponents(android.InitRegistrationContext)
38}
39
40func registerBuildComponents(ctx android.RegistrationContext) {
41 ctx.RegisterModuleType("soong_filesystem_creator", filesystemCreatorFactory)
mrziwang8f86c882024-10-03 12:34:33 -070042 ctx.PreDepsMutators(RegisterCollectFileSystemDepsMutators)
43}
44
Cole Faust76e8aa12025-01-27 18:21:31 -080045type generatedPartitionData struct {
46 partitionType string
47 moduleName string
48 // supported is true if the module was created successfully, false if there was some problem
49 // and the module couldn't be created.
50 supported bool
51 handwritten bool
52}
53
54type allGeneratedPartitionData []generatedPartitionData
55
56func (d allGeneratedPartitionData) moduleNames() []string {
57 var result []string
58 for _, data := range d {
59 if data.supported {
60 result = append(result, data.moduleName)
61 }
62 }
63 return result
64}
65
66func (d allGeneratedPartitionData) types() []string {
67 var result []string
68 for _, data := range d {
69 if data.supported {
70 result = append(result, data.partitionType)
71 }
72 }
73 return result
74}
75
76func (d allGeneratedPartitionData) unsupportedTypes() []string {
77 var result []string
78 for _, data := range d {
79 if !data.supported {
80 result = append(result, data.partitionType)
81 }
82 }
83 return result
84}
85
86func (d allGeneratedPartitionData) names() []string {
87 var result []string
88 for _, data := range d {
89 if data.supported {
90 result = append(result, data.moduleName)
91 }
92 }
93 return result
94}
95
96func (d allGeneratedPartitionData) nameForType(ty string) string {
97 for _, data := range d {
98 if data.supported && data.partitionType == ty {
99 return data.moduleName
100 }
101 }
102 return ""
103}
104
105func (d allGeneratedPartitionData) typeForName(name string) string {
106 for _, data := range d {
107 if data.supported && data.moduleName == name {
108 return data.partitionType
109 }
110 }
111 return ""
112}
113
114func (d allGeneratedPartitionData) isHandwritten(name string) bool {
115 for _, data := range d {
116 if data.supported && data.moduleName == name {
117 return data.handwritten
118 }
119 }
120 return false
121}
122
Cole Faust92ccbe22024-10-03 14:38:37 -0700123type filesystemCreatorProps struct {
Cole Faust92ccbe22024-10-03 14:38:37 -0700124 Unsupported_partition_types []string `blueprint:"mutated"`
Cole Faust3552eb62024-11-06 18:07:26 -0800125
126 Vbmeta_module_names []string `blueprint:"mutated"`
127 Vbmeta_partition_names []string `blueprint:"mutated"`
Cole Faustf2a6e8b2024-11-14 10:54:48 -0800128
Cole Faust24938e22024-11-18 14:01:58 -0800129 Boot_image string `blueprint:"mutated" android:"path_device_first"`
130 Vendor_boot_image string `blueprint:"mutated" android:"path_device_first"`
Jihoon Kang95eb1da2024-11-19 20:55:20 +0000131 Init_boot_image string `blueprint:"mutated" android:"path_device_first"`
mrziwang79730d42024-12-02 22:13:59 -0800132 Super_image string `blueprint:"mutated" android:"path_device_first"`
Cole Faust92ccbe22024-10-03 14:38:37 -0700133}
134
Jihoon Kang98047cf2024-10-02 17:13:54 +0000135type filesystemCreator struct {
136 android.ModuleBase
Cole Faust92ccbe22024-10-03 14:38:37 -0700137
138 properties filesystemCreatorProps
Jihoon Kang98047cf2024-10-02 17:13:54 +0000139}
140
141func filesystemCreatorFactory() android.Module {
142 module := &filesystemCreator{}
143
Cole Faust69788792024-10-10 11:00:36 -0700144 android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon)
Cole Faust92ccbe22024-10-03 14:38:37 -0700145 module.AddProperties(&module.properties)
Jihoon Kang98047cf2024-10-02 17:13:54 +0000146 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
Jihoon Kang675d4682024-10-24 23:45:11 +0000147 generatedPrebuiltEtcModuleNames := createPrebuiltEtcModules(ctx)
Jihoon Kang04f12c92024-11-12 23:03:08 +0000148 avbpubkeyGenerated := createAvbpubkeyModule(ctx)
149 createFsGenState(ctx, generatedPrebuiltEtcModuleNames, avbpubkeyGenerated)
Cole Faust953476f2024-11-14 14:11:29 -0800150 module.createAvbKeyFilegroups(ctx)
Cole Faust3e730972024-12-03 13:12:08 -0800151 module.createMiscFilegroups(ctx)
Jihoon Kang98047cf2024-10-02 17:13:54 +0000152 module.createInternalModules(ctx)
153 })
154
155 return module
156}
157
Cole Faust76e8aa12025-01-27 18:21:31 -0800158func generatedPartitions(ctx android.EarlyModuleContext) allGeneratedPartitionData {
Cole Faust24938e22024-11-18 14:01:58 -0800159 partitionVars := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse
Cole Faust76e8aa12025-01-27 18:21:31 -0800160
161 var result allGeneratedPartitionData
162 addGenerated := func(ty string) {
163 result = append(result, generatedPartitionData{
164 partitionType: ty,
165 moduleName: generatedModuleNameForPartition(ctx.Config(), ty),
166 supported: true,
167 })
168 }
169
170 if ctx.Config().UseSoongSystemImage() {
171 if ctx.Config().SoongDefinedSystemImage() == "" {
172 panic("PRODUCT_SOONG_DEFINED_SYSTEM_IMAGE must be set if USE_SOONG_DEFINED_SYSTEM_IMAGE is true")
173 }
174 result = append(result, generatedPartitionData{
175 partitionType: "system",
176 moduleName: ctx.Config().SoongDefinedSystemImage(),
177 supported: true,
178 handwritten: true,
179 })
180 } else {
181 addGenerated("system")
182 }
Cole Faustf2a6e8b2024-11-14 10:54:48 -0800183 if ctx.DeviceConfig().SystemExtPath() == "system_ext" {
Cole Faust76e8aa12025-01-27 18:21:31 -0800184 addGenerated("system_ext")
Cole Faustf2a6e8b2024-11-14 10:54:48 -0800185 }
186 if ctx.DeviceConfig().BuildingVendorImage() && ctx.DeviceConfig().VendorPath() == "vendor" {
Cole Faust76e8aa12025-01-27 18:21:31 -0800187 addGenerated("vendor")
Cole Faustf2a6e8b2024-11-14 10:54:48 -0800188 }
189 if ctx.DeviceConfig().BuildingProductImage() && ctx.DeviceConfig().ProductPath() == "product" {
Cole Faust76e8aa12025-01-27 18:21:31 -0800190 addGenerated("product")
Cole Faustf2a6e8b2024-11-14 10:54:48 -0800191 }
192 if ctx.DeviceConfig().BuildingOdmImage() && ctx.DeviceConfig().OdmPath() == "odm" {
Cole Faust76e8aa12025-01-27 18:21:31 -0800193 addGenerated("odm")
Cole Faustf2a6e8b2024-11-14 10:54:48 -0800194 }
195 if ctx.DeviceConfig().BuildingUserdataImage() && ctx.DeviceConfig().UserdataPath() == "data" {
Cole Faust76e8aa12025-01-27 18:21:31 -0800196 addGenerated("userdata")
Cole Faustf2a6e8b2024-11-14 10:54:48 -0800197 }
Cole Faust24938e22024-11-18 14:01:58 -0800198 if partitionVars.BuildingSystemDlkmImage {
Cole Faust76e8aa12025-01-27 18:21:31 -0800199 addGenerated("system_dlkm")
Cole Faustf2a6e8b2024-11-14 10:54:48 -0800200 }
Cole Faust24938e22024-11-18 14:01:58 -0800201 if partitionVars.BuildingVendorDlkmImage {
Cole Faust76e8aa12025-01-27 18:21:31 -0800202 addGenerated("vendor_dlkm")
Cole Faustf2a6e8b2024-11-14 10:54:48 -0800203 }
Cole Faust24938e22024-11-18 14:01:58 -0800204 if partitionVars.BuildingOdmDlkmImage {
Cole Faust76e8aa12025-01-27 18:21:31 -0800205 addGenerated("odm_dlkm")
Cole Faustf2a6e8b2024-11-14 10:54:48 -0800206 }
Cole Faust24938e22024-11-18 14:01:58 -0800207 if partitionVars.BuildingRamdiskImage {
Cole Faust76e8aa12025-01-27 18:21:31 -0800208 addGenerated("ramdisk")
Cole Faustf2a6e8b2024-11-14 10:54:48 -0800209 }
Cole Faust24938e22024-11-18 14:01:58 -0800210 if buildingVendorBootImage(partitionVars) {
Cole Faust76e8aa12025-01-27 18:21:31 -0800211 addGenerated("vendor_ramdisk")
Cole Faust24938e22024-11-18 14:01:58 -0800212 }
Jihoon Kang3216c982024-12-02 19:42:20 +0000213 if ctx.DeviceConfig().BuildingRecoveryImage() && ctx.DeviceConfig().RecoveryPath() == "recovery" {
Cole Faust76e8aa12025-01-27 18:21:31 -0800214 addGenerated("recovery")
Jihoon Kang3216c982024-12-02 19:42:20 +0000215 }
Cole Faust76e8aa12025-01-27 18:21:31 -0800216 return result
Cole Faustf2a6e8b2024-11-14 10:54:48 -0800217}
218
Jihoon Kang98047cf2024-10-02 17:13:54 +0000219func (f *filesystemCreator) createInternalModules(ctx android.LoadHookContext) {
Cole Faust76e8aa12025-01-27 18:21:31 -0800220 partitions := generatedPartitions(ctx)
221 for i := range partitions {
222 f.createPartition(ctx, partitions, &partitions[i])
Cole Faustb8e280f2025-01-16 16:33:26 -0800223 }
Spandan Dase51ff952025-01-09 18:11:59 +0000224 // Create android_info.prop
225 f.createAndroidInfo(ctx)
Cole Faust3552eb62024-11-06 18:07:26 -0800226
Cole Faust24938e22024-11-18 14:01:58 -0800227 partitionVars := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse
Jihoon Kang70c1c682024-11-20 23:58:38 +0000228 dtbImg := createDtbImgFilegroup(ctx)
229
Cole Faust24938e22024-11-18 14:01:58 -0800230 if buildingBootImage(partitionVars) {
Jihoon Kang70c1c682024-11-20 23:58:38 +0000231 if createBootImage(ctx, dtbImg) {
Cole Faustf2a6e8b2024-11-14 10:54:48 -0800232 f.properties.Boot_image = ":" + generatedModuleNameForPartition(ctx.Config(), "boot")
233 } else {
234 f.properties.Unsupported_partition_types = append(f.properties.Unsupported_partition_types, "boot")
235 }
236 }
Cole Faust24938e22024-11-18 14:01:58 -0800237 if buildingVendorBootImage(partitionVars) {
Jihoon Kang70c1c682024-11-20 23:58:38 +0000238 if createVendorBootImage(ctx, dtbImg) {
Cole Faust24938e22024-11-18 14:01:58 -0800239 f.properties.Vendor_boot_image = ":" + generatedModuleNameForPartition(ctx.Config(), "vendor_boot")
240 } else {
241 f.properties.Unsupported_partition_types = append(f.properties.Unsupported_partition_types, "vendor_boot")
242 }
243 }
Jihoon Kang95eb1da2024-11-19 20:55:20 +0000244 if buildingInitBootImage(partitionVars) {
245 if createInitBootImage(ctx) {
246 f.properties.Init_boot_image = ":" + generatedModuleNameForPartition(ctx.Config(), "init_boot")
247 } else {
248 f.properties.Unsupported_partition_types = append(f.properties.Unsupported_partition_types, "init_boot")
249 }
250 }
Cole Faustf2a6e8b2024-11-14 10:54:48 -0800251
Cole Faust74ee4e02025-01-16 14:55:35 -0800252 var systemOtherImageName string
253 if buildingSystemOtherImage(partitionVars) {
Cole Faust76e8aa12025-01-27 18:21:31 -0800254 systemModule := partitions.nameForType("system")
Cole Faust74ee4e02025-01-16 14:55:35 -0800255 systemOtherImageName = generatedModuleNameForPartition(ctx.Config(), "system_other")
256 ctx.CreateModule(
257 filesystem.SystemOtherImageFactory,
258 &filesystem.SystemOtherImageProperties{
Cole Faustb8e280f2025-01-16 16:33:26 -0800259 System_image: &systemModule,
Cole Faust76e8aa12025-01-27 18:21:31 -0800260 Preinstall_dexpreopt_files_from: partitions.moduleNames(),
Cole Faust74ee4e02025-01-16 14:55:35 -0800261 },
262 &struct {
263 Name *string
264 }{
265 Name: proptools.StringPtr(systemOtherImageName),
266 },
267 )
268 }
269
Cole Faust76e8aa12025-01-27 18:21:31 -0800270 for _, x := range f.createVbmetaPartitions(ctx, partitions) {
Cole Faust3552eb62024-11-06 18:07:26 -0800271 f.properties.Vbmeta_module_names = append(f.properties.Vbmeta_module_names, x.moduleName)
272 f.properties.Vbmeta_partition_names = append(f.properties.Vbmeta_partition_names, x.partitionName)
273 }
274
Cole Faust2bdc5e52025-01-10 10:29:36 -0800275 var superImageSubpartitions []string
mrziwang79730d42024-12-02 22:13:59 -0800276 if buildingSuperImage(partitionVars) {
Cole Faust76e8aa12025-01-27 18:21:31 -0800277 superImageSubpartitions = createSuperImage(ctx, partitions, partitionVars, systemOtherImageName)
Jihoon Kang1259eff2025-01-09 22:11:03 +0000278 f.properties.Super_image = ":" + generatedModuleNameForPartition(ctx.Config(), "super")
mrziwang79730d42024-12-02 22:13:59 -0800279 }
280
Cole Faust76e8aa12025-01-27 18:21:31 -0800281 ctx.Config().Get(fsGenStateOnceKey).(*FsGenState).soongGeneratedPartitions = partitions
282 f.createDeviceModule(ctx, partitions, f.properties.Vbmeta_module_names, superImageSubpartitions)
Jihoon Kang98047cf2024-10-02 17:13:54 +0000283}
284
Jihoon Kang0d545b82024-10-11 00:21:57 +0000285func generatedModuleName(cfg android.Config, suffix string) string {
Cole Faust92ccbe22024-10-03 14:38:37 -0700286 prefix := "soong"
287 if cfg.HasDeviceProduct() {
288 prefix = cfg.DeviceProduct()
289 }
Jihoon Kangf1c79ca2024-10-09 20:18:38 +0000290 return fmt.Sprintf("%s_generated_%s", prefix, suffix)
291}
292
Jihoon Kang0d545b82024-10-11 00:21:57 +0000293func generatedModuleNameForPartition(cfg android.Config, partitionType string) string {
294 return generatedModuleName(cfg, fmt.Sprintf("%s_image", partitionType))
Jihoon Kangf1c79ca2024-10-09 20:18:38 +0000295}
296
Cole Faust74ee4e02025-01-16 14:55:35 -0800297func buildingSystemOtherImage(partitionVars android.PartitionVariables) bool {
298 // TODO: Recreate this logic from make instead of just depending on the final result variable:
299 // https://cs.android.com/android/platform/superproject/main/+/main:build/make/core/board_config.mk;l=429;drc=15a0df840e7093f65518003ab80cf24a3d9e8e6a
300 return partitionVars.BuildingSystemOtherImage
301}
302
Jihoon Kang3be17162025-01-09 20:51:54 +0000303func (f *filesystemCreator) createBootloaderFilegroup(ctx android.LoadHookContext) (string, bool) {
304 bootloaderPath := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.PrebuiltBootloader
305 if len(bootloaderPath) == 0 {
306 return "", false
307 }
308
309 bootloaderFilegroupName := generatedModuleName(ctx.Config(), "bootloader")
310 filegroupProps := &struct {
311 Name *string
312 Srcs []string
313 Visibility []string
314 }{
315 Name: proptools.StringPtr(bootloaderFilegroupName),
316 Srcs: []string{bootloaderPath},
317 Visibility: []string{"//visibility:public"},
318 }
319 ctx.CreateModuleInDirectory(android.FileGroupFactory, ".", filegroupProps)
320 return bootloaderFilegroupName, true
321}
322
Spandan Das37240d92025-02-14 00:18:41 +0000323func (f *filesystemCreator) createReleaseToolsFilegroup(ctx android.LoadHookContext) (string, bool) {
324 releaseToolsDir := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.ReleaseToolsExtensionDir
325 if releaseToolsDir == "" {
326 return "", false
327 }
328
329 releaseToolsFilegroupName := generatedModuleName(ctx.Config(), "releasetools")
330 filegroupProps := &struct {
331 Name *string
332 Srcs []string
333 Visibility []string
334 }{
335 Name: proptools.StringPtr(releaseToolsFilegroupName),
336 Srcs: []string{"releasetools.py"},
337 Visibility: []string{"//visibility:public"},
338 }
339 ctx.CreateModuleInDirectory(android.FileGroupFactory, releaseToolsDir, filegroupProps)
340 return releaseToolsFilegroupName, true
341}
342
Spandan Das3dfa17f2025-02-28 09:48:28 +0000343func (f *filesystemCreator) createFastbootInfoFilegroup(ctx android.LoadHookContext) (string, bool) {
344 fastbootInfoFile := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.BoardFastbootInfoFile
345 if fastbootInfoFile == "" {
346 return "", false
347 }
348
349 fastbootInfoFilegroupName := generatedModuleName(ctx.Config(), "fastboot")
350 filegroupProps := &struct {
351 Name *string
352 Srcs []string
353 Visibility []string
354 }{
355 Name: proptools.StringPtr(fastbootInfoFilegroupName),
356 Srcs: []string{fastbootInfoFile},
357 Visibility: []string{"//visibility:public"},
358 }
359 ctx.CreateModuleInDirectory(android.FileGroupFactory, ".", filegroupProps)
360 return fastbootInfoFilegroupName, true
361}
362
Cole Faust3552eb62024-11-06 18:07:26 -0800363func (f *filesystemCreator) createDeviceModule(
364 ctx android.LoadHookContext,
Cole Faust76e8aa12025-01-27 18:21:31 -0800365 partitions allGeneratedPartitionData,
Cole Faust3552eb62024-11-06 18:07:26 -0800366 vbmetaPartitions []string,
Cole Faust2bdc5e52025-01-10 10:29:36 -0800367 superImageSubPartitions []string,
Cole Faust3552eb62024-11-06 18:07:26 -0800368) {
Jihoon Kangf1c79ca2024-10-09 20:18:38 +0000369 baseProps := &struct {
Cole Faust2b2f1a02025-02-24 13:23:21 -0800370 Name *string
Jihoon Kangf1c79ca2024-10-09 20:18:38 +0000371 }{
Cole Faust2b2f1a02025-02-24 13:23:21 -0800372 Name: proptools.StringPtr(generatedModuleName(ctx.Config(), "device")),
Jihoon Kangf1c79ca2024-10-09 20:18:38 +0000373 }
374
Priyanka Advani (xWF)dafaa7f2024-10-21 22:55:13 +0000375 // Currently, only the system and system_ext partition module is created.
Jihoon Kangf1c79ca2024-10-09 20:18:38 +0000376 partitionProps := &filesystem.PartitionNameProperties{}
Cole Faust2bdc5e52025-01-10 10:29:36 -0800377 if f.properties.Super_image != "" {
378 partitionProps.Super_partition_name = proptools.StringPtr(generatedModuleNameForPartition(ctx.Config(), "super"))
379 }
Cole Faust76e8aa12025-01-27 18:21:31 -0800380 if modName := partitions.nameForType("system"); modName != "" && !android.InList("system", superImageSubPartitions) {
381 partitionProps.System_partition_name = proptools.StringPtr(modName)
Jihoon Kangf1c79ca2024-10-09 20:18:38 +0000382 }
Cole Faust76e8aa12025-01-27 18:21:31 -0800383 if modName := partitions.nameForType("system_ext"); modName != "" && !android.InList("system_ext", superImageSubPartitions) {
384 partitionProps.System_ext_partition_name = proptools.StringPtr(modName)
Spandan Das7a46f6c2024-10-14 18:41:18 +0000385 }
Cole Faust76e8aa12025-01-27 18:21:31 -0800386 if modName := partitions.nameForType("vendor"); modName != "" && !android.InList("vendor", superImageSubPartitions) {
387 partitionProps.Vendor_partition_name = proptools.StringPtr(modName)
Spandan Dase3b65312024-10-22 00:27:27 +0000388 }
Cole Faust76e8aa12025-01-27 18:21:31 -0800389 if modName := partitions.nameForType("product"); modName != "" && !android.InList("product", superImageSubPartitions) {
390 partitionProps.Product_partition_name = proptools.StringPtr(modName)
Jihoon Kang6dd13b62024-10-22 23:21:02 +0000391 }
Cole Faust76e8aa12025-01-27 18:21:31 -0800392 if modName := partitions.nameForType("odm"); modName != "" && !android.InList("odm", superImageSubPartitions) {
393 partitionProps.Odm_partition_name = proptools.StringPtr(modName)
Spandan Dasc5717162024-11-01 18:33:57 +0000394 }
Cole Faust76e8aa12025-01-27 18:21:31 -0800395 if modName := partitions.nameForType("userdata"); modName != "" {
396 partitionProps.Userdata_partition_name = proptools.StringPtr(modName)
mrziwang23ba8762024-11-07 16:21:53 -0800397 }
Cole Faustd7b83ff2025-02-18 15:33:31 -0800398 if modName := partitions.nameForType("recovery"); modName != "" && !ctx.DeviceConfig().BoardMoveRecoveryResourcesToVendorBoot() {
Cole Faust76e8aa12025-01-27 18:21:31 -0800399 partitionProps.Recovery_partition_name = proptools.StringPtr(modName)
Jihoon Kange7e3ec82025-01-02 21:29:14 +0000400 }
Cole Faust76e8aa12025-01-27 18:21:31 -0800401 if modName := partitions.nameForType("system_dlkm"); modName != "" && !android.InList("system_dlkm", superImageSubPartitions) {
402 partitionProps.System_dlkm_partition_name = proptools.StringPtr(modName)
Spandan Dasa0394002025-01-07 18:38:34 +0000403 }
Cole Faust76e8aa12025-01-27 18:21:31 -0800404 if modName := partitions.nameForType("vendor_dlkm"); modName != "" && !android.InList("vendor_dlkm", superImageSubPartitions) {
405 partitionProps.Vendor_dlkm_partition_name = proptools.StringPtr(modName)
Spandan Dasa0394002025-01-07 18:38:34 +0000406 }
Cole Faust76e8aa12025-01-27 18:21:31 -0800407 if modName := partitions.nameForType("odm_dlkm"); modName != "" && !android.InList("odm_dlkm", superImageSubPartitions) {
408 partitionProps.Odm_dlkm_partition_name = proptools.StringPtr(modName)
Spandan Dasa0394002025-01-07 18:38:34 +0000409 }
Jihoon Kange7e3ec82025-01-02 21:29:14 +0000410 if f.properties.Boot_image != "" {
411 partitionProps.Boot_partition_name = proptools.StringPtr(generatedModuleNameForPartition(ctx.Config(), "boot"))
412 }
413 if f.properties.Vendor_boot_image != "" {
414 partitionProps.Vendor_boot_partition_name = proptools.StringPtr(generatedModuleNameForPartition(ctx.Config(), "vendor_boot"))
415 }
416 if f.properties.Init_boot_image != "" {
417 partitionProps.Init_boot_partition_name = proptools.StringPtr(generatedModuleNameForPartition(ctx.Config(), "init_boot"))
418 }
Cole Faust3552eb62024-11-06 18:07:26 -0800419 partitionProps.Vbmeta_partitions = vbmetaPartitions
Jihoon Kangf1c79ca2024-10-09 20:18:38 +0000420
Cole Faust11fda332025-01-14 16:47:19 -0800421 deviceProps := &filesystem.DeviceProperties{
Spandan Das00948072025-02-12 19:36:03 +0000422 Main_device: proptools.BoolPtr(true),
423 Ab_ota_updater: proptools.BoolPtr(ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.AbOtaUpdater),
424 Ab_ota_partitions: ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.AbOtaPartitions,
425 Ab_ota_postinstall_config: ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.AbOtaPostInstallConfig,
Spandan Das75955b12025-02-13 22:12:52 +0000426 Ramdisk_node_list: proptools.StringPtr(":ramdisk_node_list"),
Cole Faust2b2f1a02025-02-24 13:23:21 -0800427 Android_info: proptools.StringPtr(":" + generatedModuleName(ctx.Config(), "android_info.prop{.txt}")),
Cole Faust21c11462025-03-03 14:13:17 -0800428 Kernel_version: ctx.Config().ProductVariables().BoardKernelVersion,
Cole Faust11fda332025-01-14 16:47:19 -0800429 }
Spandan Das37240d92025-02-14 00:18:41 +0000430
Jihoon Kang3be17162025-01-09 20:51:54 +0000431 if bootloader, ok := f.createBootloaderFilegroup(ctx); ok {
432 deviceProps.Bootloader = proptools.StringPtr(":" + bootloader)
433 }
Spandan Das37240d92025-02-14 00:18:41 +0000434 if releaseTools, ok := f.createReleaseToolsFilegroup(ctx); ok {
435 deviceProps.Releasetools_extension = proptools.StringPtr(":" + releaseTools)
436 }
Spandan Das3dfa17f2025-02-28 09:48:28 +0000437 if fastbootInfo, ok := f.createFastbootInfoFilegroup(ctx); ok {
438 deviceProps.FastbootInfo = proptools.StringPtr(":" + fastbootInfo)
439 }
Jihoon Kang3be17162025-01-09 20:51:54 +0000440
441 ctx.CreateModule(filesystem.AndroidDeviceFactory, baseProps, partitionProps, deviceProps)
Cole Faust92ccbe22024-10-03 14:38:37 -0700442}
443
Cole Faust76e8aa12025-01-27 18:21:31 -0800444func partitionSpecificFsProps(ctx android.EarlyModuleContext, partitions allGeneratedPartitionData, fsProps *filesystem.FilesystemProperties, partitionType string) {
445 partitionVars := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse
Jihoon Kang6850d8f2024-10-17 20:45:58 +0000446 switch partitionType {
447 case "system":
448 fsProps.Build_logtags = proptools.BoolPtr(true)
449 // https://source.corp.google.com/h/googleplex-android/platform/build//639d79f5012a6542ab1f733b0697db45761ab0f3:core/packaging/flags.mk;l=21;drc=5ba8a8b77507f93aa48cc61c5ba3f31a4d0cbf37;bpv=1;bpt=0
450 fsProps.Gen_aconfig_flags_pb = proptools.BoolPtr(true)
Justin Yuned3dbce2024-11-15 11:57:24 +0900451 // Identical to that of the aosp_shared_system_image
Spandan Das2b4bf4c2024-12-02 19:41:04 +0000452 if partitionVars.ProductFsverityGenerateMetadata {
Inseob Kimc7769d72025-01-15 17:32:37 +0900453 fsProps.Fsverity.Inputs = proptools.NewSimpleConfigurable([]string{
Spandan Das2b4bf4c2024-12-02 19:41:04 +0000454 "etc/boot-image.prof",
455 "etc/dirty-image-objects",
456 "etc/preloaded-classes",
457 "etc/classpaths/*.pb",
458 "framework/*",
459 "framework/*/*", // framework/{arch}
460 "framework/oat/*/*", // framework/oat/{arch}
Inseob Kimc7769d72025-01-15 17:32:37 +0900461 })
462 fsProps.Fsverity.Libs = proptools.NewSimpleConfigurable([]string{":framework-res{.export-package.apk}"})
Spandan Dasa8fa6b42024-10-23 00:45:29 +0000463 }
Jihoon Kang0a453892024-12-09 22:16:26 +0000464 fsProps.Symlinks = commonSymlinksFromRoot
465 fsProps.Symlinks = append(fsProps.Symlinks,
466 []filesystem.SymlinkDefinition{
467 {
468 Target: proptools.StringPtr("/data/cache"),
469 Name: proptools.StringPtr("cache"),
470 },
471 {
472 Target: proptools.StringPtr("/storage/self/primary"),
473 Name: proptools.StringPtr("sdcard"),
474 },
475 {
476 Target: proptools.StringPtr("/system_dlkm/lib/modules"),
477 Name: proptools.StringPtr("system/lib/modules"),
478 },
479 {
480 Target: proptools.StringPtr("/product"),
481 Name: proptools.StringPtr("system/product"),
482 },
483 {
484 Target: proptools.StringPtr("/system_ext"),
485 Name: proptools.StringPtr("system/system_ext"),
486 },
487 {
488 Target: proptools.StringPtr("/vendor"),
489 Name: proptools.StringPtr("system/vendor"),
490 },
491 }...,
492 )
Spandan Das978f4532024-12-05 21:05:43 +0000493 fsProps.Base_dir = proptools.StringPtr("system")
Jihoon Kang0a453892024-12-09 22:16:26 +0000494 fsProps.Dirs = proptools.NewSimpleConfigurable(commonPartitionDirs)
Spandan Dase5c393c2024-12-12 19:25:07 +0000495 fsProps.Security_patch = proptools.StringPtr(ctx.Config().PlatformSecurityPatch())
Spandan Dasc49b85e2025-01-10 00:51:25 +0000496 fsProps.Stem = proptools.StringPtr("system.img")
Spandan Dasa8fa6b42024-10-23 00:45:29 +0000497 case "system_ext":
Spandan Das2b4bf4c2024-12-02 19:41:04 +0000498 if partitionVars.ProductFsverityGenerateMetadata {
Inseob Kimc7769d72025-01-15 17:32:37 +0900499 fsProps.Fsverity.Inputs = proptools.NewSimpleConfigurable([]string{
Spandan Das2b4bf4c2024-12-02 19:41:04 +0000500 "framework/*",
501 "framework/*/*", // framework/{arch}
502 "framework/oat/*/*", // framework/oat/{arch}
Inseob Kimc7769d72025-01-15 17:32:37 +0900503 })
504 fsProps.Fsverity.Libs = proptools.NewSimpleConfigurable([]string{":framework-res{.export-package.apk}"})
Spandan Dasa8fa6b42024-10-23 00:45:29 +0000505 }
Spandan Dase5c393c2024-12-12 19:25:07 +0000506 fsProps.Security_patch = proptools.StringPtr(ctx.Config().PlatformSecurityPatch())
Spandan Dasc49b85e2025-01-10 00:51:25 +0000507 fsProps.Stem = proptools.StringPtr("system_ext.img")
Jihoon Kang6850d8f2024-10-17 20:45:58 +0000508 case "product":
509 fsProps.Gen_aconfig_flags_pb = proptools.BoolPtr(true)
Cole Faust76e8aa12025-01-27 18:21:31 -0800510 fsProps.Android_filesystem_deps.System = proptools.StringPtr(partitions.nameForType("system"))
511 if systemExtName := partitions.nameForType("system_ext"); systemExtName != "" {
512 fsProps.Android_filesystem_deps.System_ext = proptools.StringPtr(systemExtName)
Spandan Das71be42d2024-11-20 18:34:16 +0000513 }
Spandan Dase5c393c2024-12-12 19:25:07 +0000514 fsProps.Security_patch = proptools.StringPtr(ctx.Config().PlatformSecurityPatch())
Spandan Dasc49b85e2025-01-10 00:51:25 +0000515 fsProps.Stem = proptools.StringPtr("product.img")
Jihoon Kang6850d8f2024-10-17 20:45:58 +0000516 case "vendor":
517 fsProps.Gen_aconfig_flags_pb = proptools.BoolPtr(true)
Spandan Das69464c32024-10-25 20:08:06 +0000518 fsProps.Symlinks = []filesystem.SymlinkDefinition{
519 filesystem.SymlinkDefinition{
520 Target: proptools.StringPtr("/odm"),
Spandan Das978f4532024-12-05 21:05:43 +0000521 Name: proptools.StringPtr("odm"),
Spandan Das69464c32024-10-25 20:08:06 +0000522 },
523 filesystem.SymlinkDefinition{
524 Target: proptools.StringPtr("/vendor_dlkm/lib/modules"),
Spandan Das978f4532024-12-05 21:05:43 +0000525 Name: proptools.StringPtr("lib/modules"),
Spandan Das69464c32024-10-25 20:08:06 +0000526 },
527 }
Cole Faust76e8aa12025-01-27 18:21:31 -0800528 fsProps.Android_filesystem_deps.System = proptools.StringPtr(partitions.nameForType("system"))
529 if systemExtName := partitions.nameForType("system_ext"); systemExtName != "" {
530 fsProps.Android_filesystem_deps.System_ext = proptools.StringPtr(systemExtName)
Spandan Das71be42d2024-11-20 18:34:16 +0000531 }
Spandan Dase5c393c2024-12-12 19:25:07 +0000532 fsProps.Security_patch = proptools.StringPtr(partitionVars.VendorSecurityPatch)
Spandan Dasc49b85e2025-01-10 00:51:25 +0000533 fsProps.Stem = proptools.StringPtr("vendor.img")
Spandan Dasc5717162024-11-01 18:33:57 +0000534 case "odm":
535 fsProps.Symlinks = []filesystem.SymlinkDefinition{
536 filesystem.SymlinkDefinition{
537 Target: proptools.StringPtr("/odm_dlkm/lib/modules"),
Spandan Das978f4532024-12-05 21:05:43 +0000538 Name: proptools.StringPtr("lib/modules"),
Spandan Dasc5717162024-11-01 18:33:57 +0000539 },
540 }
Spandan Dase5c393c2024-12-12 19:25:07 +0000541 fsProps.Security_patch = proptools.StringPtr(partitionVars.OdmSecurityPatch)
Spandan Dasc49b85e2025-01-10 00:51:25 +0000542 fsProps.Stem = proptools.StringPtr("odm.img")
mrziwang23ba8762024-11-07 16:21:53 -0800543 case "userdata":
Spandan Dasc49b85e2025-01-10 00:51:25 +0000544 fsProps.Stem = proptools.StringPtr("userdata.img")
Jihoon Kang983dd882025-01-13 23:14:11 +0000545 if vars, ok := partitionVars.PartitionQualifiedVariables["userdata"]; ok {
546 parsed, err := strconv.ParseInt(vars.BoardPartitionSize, 10, 64)
547 if err != nil {
548 panic(fmt.Sprintf("Partition size must be an int, got %s", vars.BoardPartitionSize))
549 }
550 fsProps.Partition_size = &parsed
Jihoon Kangc28395f2025-01-14 21:42:44 +0000551 // Disable avb for userdata partition
552 fsProps.Use_avb = nil
Jihoon Kang983dd882025-01-13 23:14:11 +0000553 }
Jihoon Kang6d08d922025-01-14 18:31:57 +0000554 // https://cs.android.com/android/platform/superproject/main/+/main:build/make/core/Makefile;l=2265;drc=7f50a123045520f2c5e18e9eb4e83f92244a1459
555 if s, err := strconv.ParseBool(partitionVars.ProductFsCasefold); err == nil {
556 fsProps.Support_casefolding = proptools.BoolPtr(s)
557 } else if len(partitionVars.ProductFsCasefold) > 0 {
558 ctx.ModuleErrorf("Unrecognized PRODUCT_FS_CASEFOLD value %s", partitionVars.ProductFsCasefold)
559 }
560 if s, err := strconv.ParseBool(partitionVars.ProductQuotaProjid); err == nil {
561 fsProps.Support_project_quota = proptools.BoolPtr(s)
562 } else if len(partitionVars.ProductQuotaProjid) > 0 {
563 ctx.ModuleErrorf("Unrecognized PRODUCT_QUOTA_PROJID value %s", partitionVars.ProductQuotaProjid)
564 }
565 if s, err := strconv.ParseBool(partitionVars.ProductFsCompression); err == nil {
566 fsProps.Enable_compression = proptools.BoolPtr(s)
567 } else if len(partitionVars.ProductFsCompression) > 0 {
568 ctx.ModuleErrorf("Unrecognized PRODUCT_FS_COMPRESSION value %s", partitionVars.ProductFsCompression)
569 }
570
Jihoon Kangd098d442024-11-19 00:03:22 +0000571 case "ramdisk":
572 // Following the logic in https://cs.android.com/android/platform/superproject/main/+/c3c5063df32748a8806ce5da5dd0db158eab9ad9:build/make/core/Makefile;l=1307
573 fsProps.Dirs = android.NewSimpleConfigurable([]string{
574 "debug_ramdisk",
575 "dev",
576 "metadata",
577 "mnt",
578 "proc",
579 "second_stage_resources",
580 "sys",
581 })
582 if partitionVars.BoardUsesGenericKernelImage {
583 fsProps.Dirs.AppendSimpleValue([]string{
584 "first_stage_ramdisk/debug_ramdisk",
585 "first_stage_ramdisk/dev",
586 "first_stage_ramdisk/metadata",
587 "first_stage_ramdisk/mnt",
588 "first_stage_ramdisk/proc",
589 "first_stage_ramdisk/second_stage_resources",
590 "first_stage_ramdisk/sys",
591 })
592 }
Spandan Dasc49b85e2025-01-10 00:51:25 +0000593 fsProps.Stem = proptools.StringPtr("ramdisk.img")
Jihoon Kang9007f382024-12-04 00:43:52 +0000594 case "recovery":
Jihoon Kang0a453892024-12-09 22:16:26 +0000595 dirs := append(commonPartitionDirs, []string{
Jihoon Kang9007f382024-12-04 00:43:52 +0000596 "sdcard",
Jihoon Kang0a453892024-12-09 22:16:26 +0000597 }...)
598
599 dirsWithRoot := make([]string, len(dirs))
600 for i, dir := range dirs {
601 dirsWithRoot[i] = filepath.Join("root", dir)
Jihoon Kang9007f382024-12-04 00:43:52 +0000602 }
Jihoon Kang0a453892024-12-09 22:16:26 +0000603
604 fsProps.Dirs = proptools.NewSimpleConfigurable(dirsWithRoot)
605 fsProps.Symlinks = symlinksWithNamePrefix(append(commonSymlinksFromRoot, filesystem.SymlinkDefinition{
606 Target: proptools.StringPtr("prop.default"),
607 Name: proptools.StringPtr("default.prop"),
608 }), "root")
Spandan Dasc49b85e2025-01-10 00:51:25 +0000609 fsProps.Stem = proptools.StringPtr("recovery.img")
Spandan Dase5c393c2024-12-12 19:25:07 +0000610 case "system_dlkm":
611 fsProps.Security_patch = proptools.StringPtr(partitionVars.SystemDlkmSecurityPatch)
Spandan Dasc49b85e2025-01-10 00:51:25 +0000612 fsProps.Stem = proptools.StringPtr("system_dlkm.img")
Spandan Dase5c393c2024-12-12 19:25:07 +0000613 case "vendor_dlkm":
614 fsProps.Security_patch = proptools.StringPtr(partitionVars.VendorDlkmSecurityPatch)
Spandan Dasc49b85e2025-01-10 00:51:25 +0000615 fsProps.Stem = proptools.StringPtr("vendor_dlkm.img")
Spandan Dase5c393c2024-12-12 19:25:07 +0000616 case "odm_dlkm":
617 fsProps.Security_patch = proptools.StringPtr(partitionVars.OdmDlkmSecurityPatch)
Spandan Dasc49b85e2025-01-10 00:51:25 +0000618 fsProps.Stem = proptools.StringPtr("odm_dlkm.img")
Jihoon Kang6da80752024-12-23 18:53:32 +0000619 case "vendor_ramdisk":
Cole Faust76e8aa12025-01-27 18:21:31 -0800620 if recoveryName := partitions.nameForType("recovery"); recoveryName != "" {
621 fsProps.Include_files_of = []string{recoveryName}
Jihoon Kang6da80752024-12-23 18:53:32 +0000622 }
Spandan Dasc49b85e2025-01-10 00:51:25 +0000623 fsProps.Stem = proptools.StringPtr("vendor_ramdisk.img")
Jihoon Kang6850d8f2024-10-17 20:45:58 +0000624 }
625}
Spandan Dascbe641a2024-10-14 21:07:34 +0000626
Spandan Das5b493cd2024-11-07 20:55:56 +0000627var (
628 dlkmPartitions = []string{
629 "system_dlkm",
630 "vendor_dlkm",
631 "odm_dlkm",
632 }
633)
634
Cole Faust76e8aa12025-01-27 18:21:31 -0800635// Creates a soong module to build the given partition.
636func (f *filesystemCreator) createPartition(ctx android.LoadHookContext, partitions allGeneratedPartitionData, partition *generatedPartitionData) {
637 // Nextgen team's handwritten soong system image, don't need to create anything ourselves
638 if partition.partitionType == "system" && ctx.Config().UseSoongSystemImage() {
639 return
mrziwanga077b942024-10-16 16:00:06 -0700640 }
mrziwanga077b942024-10-16 16:00:06 -0700641
Cole Faust76e8aa12025-01-27 18:21:31 -0800642 baseProps := generateBaseProps(proptools.StringPtr(partition.moduleName))
643
644 fsProps, supported := generateFsProps(ctx, partitions, partition.partitionType)
645 if !supported {
646 partition.supported = false
647 return
648 }
649
650 partitionType := partition.partitionType
Cole Faust7db05752024-11-21 13:30:41 -0800651 if partitionType == "vendor" || partitionType == "product" || partitionType == "system" {
Spandan Das2047a4c2024-11-11 21:24:58 +0000652 fsProps.Linker_config.Gen_linker_config = proptools.BoolPtr(true)
Cole Faust7db05752024-11-21 13:30:41 -0800653 if partitionType != "system" {
654 fsProps.Linker_config.Linker_config_srcs = f.createLinkerConfigSourceFilegroups(ctx, partitionType)
655 }
Spandan Das312cc412024-10-29 18:20:11 +0000656 }
657
Jihoon Kanga8fa0712024-11-26 23:11:07 +0000658 if android.InList(partitionType, append(dlkmPartitions, "vendor_ramdisk")) {
Spandan Das5b493cd2024-11-07 20:55:56 +0000659 f.createPrebuiltKernelModules(ctx, partitionType)
Spandan Das5e336422024-11-01 22:31:20 +0000660 }
661
mrziwang4b0ca972024-10-17 14:56:19 -0700662 var module android.Module
663 if partitionType == "system" {
664 module = ctx.CreateModule(filesystem.SystemImageFactory, baseProps, fsProps)
665 } else {
666 // Explicitly set the partition.
667 fsProps.Partition_type = proptools.StringPtr(partitionType)
668 module = ctx.CreateModule(filesystem.FilesystemFactory, baseProps, fsProps)
669 }
670 module.HideFromMake()
Spandan Das168098c2024-10-28 19:44:34 +0000671 if partitionType == "vendor" {
Spandan Das4cd93b52024-11-05 23:27:03 +0000672 f.createVendorBuildProp(ctx)
Spandan Das168098c2024-10-28 19:44:34 +0000673 }
mrziwang4b0ca972024-10-17 14:56:19 -0700674}
675
Cole Faust953476f2024-11-14 14:11:29 -0800676// Creates filegroups for the files specified in BOARD_(partition_)AVB_KEY_PATH
677func (f *filesystemCreator) createAvbKeyFilegroups(ctx android.LoadHookContext) {
678 partitionVars := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse
679 var files []string
680
681 if len(partitionVars.BoardAvbKeyPath) > 0 {
682 files = append(files, partitionVars.BoardAvbKeyPath)
683 }
684 for _, partition := range android.SortedKeys(partitionVars.PartitionQualifiedVariables) {
685 specificPartitionVars := partitionVars.PartitionQualifiedVariables[partition]
686 if len(specificPartitionVars.BoardAvbKeyPath) > 0 {
687 files = append(files, specificPartitionVars.BoardAvbKeyPath)
688 }
689 }
690
691 fsGenState := ctx.Config().Get(fsGenStateOnceKey).(*FsGenState)
692 for _, file := range files {
693 if _, ok := fsGenState.avbKeyFilegroups[file]; ok {
694 continue
695 }
696 if file == "external/avb/test/data/testkey_rsa4096.pem" {
697 // There already exists a checked-in filegroup for this commonly-used key, just use that
698 fsGenState.avbKeyFilegroups[file] = "avb_testkey_rsa4096"
699 continue
700 }
701 dir := filepath.Dir(file)
702 base := filepath.Base(file)
703 name := fmt.Sprintf("avb_key_%x", strings.ReplaceAll(file, "/", "_"))
704 ctx.CreateModuleInDirectory(
705 android.FileGroupFactory,
706 dir,
707 &struct {
708 Name *string
709 Srcs []string
710 Visibility []string
711 }{
712 Name: proptools.StringPtr(name),
713 Srcs: []string{base},
714 Visibility: []string{"//visibility:public"},
715 },
716 )
717 fsGenState.avbKeyFilegroups[file] = name
718 }
719}
720
Cole Faust3e730972024-12-03 13:12:08 -0800721// Creates filegroups for miscellaneous other files
722func (f *filesystemCreator) createMiscFilegroups(ctx android.LoadHookContext) {
723 partitionVars := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse
724
725 if partitionVars.BoardErofsCompressorHints != "" {
726 dir := filepath.Dir(partitionVars.BoardErofsCompressorHints)
727 base := filepath.Base(partitionVars.BoardErofsCompressorHints)
728 ctx.CreateModuleInDirectory(
729 android.FileGroupFactory,
730 dir,
731 &struct {
732 Name *string
733 Srcs []string
734 Visibility []string
735 }{
736 Name: proptools.StringPtr("soong_generated_board_erofs_compress_hints_filegroup"),
737 Srcs: []string{base},
738 Visibility: []string{"//visibility:public"},
739 },
740 )
741 }
742}
743
Spandan Das5e336422024-11-01 22:31:20 +0000744// createPrebuiltKernelModules creates `prebuilt_kernel_modules`. These modules will be added to deps of the
Spandan Das7b25a512024-11-06 20:41:26 +0000745// autogenerated *_dlkm filsystem modules. Each _dlkm partition should have a single prebuilt_kernel_modules dependency.
746// This ensures that the depmod artifacts (modules.* installed in /lib/modules/) are generated with a complete view.
Spandan Das5b493cd2024-11-07 20:55:56 +0000747func (f *filesystemCreator) createPrebuiltKernelModules(ctx android.LoadHookContext, partitionType string) {
Spandan Das5e336422024-11-01 22:31:20 +0000748 fsGenState := ctx.Config().Get(fsGenStateOnceKey).(*FsGenState)
Spandan Das7b25a512024-11-06 20:41:26 +0000749 name := generatedModuleName(ctx.Config(), fmt.Sprintf("%s-kernel-modules", partitionType))
750 props := &struct {
Spandan Das912d26b2024-11-06 19:35:17 +0000751 Name *string
752 Srcs []string
Spandan Das5b493cd2024-11-07 20:55:56 +0000753 System_deps []string
Spandan Das912d26b2024-11-06 19:35:17 +0000754 System_dlkm_specific *bool
Spandan Das5b493cd2024-11-07 20:55:56 +0000755 Vendor_dlkm_specific *bool
756 Odm_dlkm_specific *bool
Jihoon Kanga8fa0712024-11-26 23:11:07 +0000757 Vendor_ramdisk *bool
Spandan Das5b493cd2024-11-07 20:55:56 +0000758 Load_by_default *bool
Spandan Das6dfcbdf2024-11-11 18:43:07 +0000759 Blocklist_file *string
Jihoon Kang72dd6fc2024-11-27 01:16:39 +0000760 Options_file *string
Spandan Das0eda1162024-12-10 20:44:49 +0000761 Strip_debug_symbols *bool
Spandan Das7b25a512024-11-06 20:41:26 +0000762 }{
Jihoon Kang6cbcd5d2024-12-20 00:51:52 +0000763 Name: proptools.StringPtr(name),
764 Strip_debug_symbols: proptools.BoolPtr(false),
Spandan Das5e336422024-11-01 22:31:20 +0000765 }
Spandan Das5b493cd2024-11-07 20:55:56 +0000766 switch partitionType {
767 case "system_dlkm":
Spandan Das59ee5d72024-11-18 19:36:32 +0000768 props.Srcs = android.ExistentPathsForSources(ctx, ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.SystemKernelModules).Strings()
Spandan Das912d26b2024-11-06 19:35:17 +0000769 props.System_dlkm_specific = proptools.BoolPtr(true)
Spandan Das5b493cd2024-11-07 20:55:56 +0000770 if len(ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.SystemKernelLoadModules) == 0 {
771 // Create empty modules.load file for system
772 // https://source.corp.google.com/h/googleplex-android/platform/build/+/ef55daac9954896161b26db4f3ef1781b5a5694c:core/Makefile;l=695-700;drc=549fe2a5162548bd8b47867d35f907eb22332023;bpv=1;bpt=0
773 props.Load_by_default = proptools.BoolPtr(false)
774 }
Spandan Das6dfcbdf2024-11-11 18:43:07 +0000775 if blocklistFile := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.SystemKernelBlocklistFile; blocklistFile != "" {
776 props.Blocklist_file = proptools.StringPtr(blocklistFile)
777 }
Spandan Das5b493cd2024-11-07 20:55:56 +0000778 case "vendor_dlkm":
Spandan Das59ee5d72024-11-18 19:36:32 +0000779 props.Srcs = android.ExistentPathsForSources(ctx, ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.VendorKernelModules).Strings()
Spandan Das5b493cd2024-11-07 20:55:56 +0000780 if len(ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.SystemKernelModules) > 0 {
781 props.System_deps = []string{":" + generatedModuleName(ctx.Config(), "system_dlkm-kernel-modules") + "{.modules}"}
782 }
783 props.Vendor_dlkm_specific = proptools.BoolPtr(true)
Spandan Das6dfcbdf2024-11-11 18:43:07 +0000784 if blocklistFile := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.VendorKernelBlocklistFile; blocklistFile != "" {
785 props.Blocklist_file = proptools.StringPtr(blocklistFile)
786 }
Spandan Das5b493cd2024-11-07 20:55:56 +0000787 case "odm_dlkm":
Spandan Das59ee5d72024-11-18 19:36:32 +0000788 props.Srcs = android.ExistentPathsForSources(ctx, ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.OdmKernelModules).Strings()
Spandan Das5b493cd2024-11-07 20:55:56 +0000789 props.Odm_dlkm_specific = proptools.BoolPtr(true)
Spandan Das6dfcbdf2024-11-11 18:43:07 +0000790 if blocklistFile := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.OdmKernelBlocklistFile; blocklistFile != "" {
791 props.Blocklist_file = proptools.StringPtr(blocklistFile)
792 }
Jihoon Kanga8fa0712024-11-26 23:11:07 +0000793 case "vendor_ramdisk":
794 props.Srcs = android.ExistentPathsForSources(ctx, ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.VendorRamdiskKernelModules).Strings()
795 props.Vendor_ramdisk = proptools.BoolPtr(true)
796 if blocklistFile := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.VendorRamdiskKernelBlocklistFile; blocklistFile != "" {
797 props.Blocklist_file = proptools.StringPtr(blocklistFile)
798 }
Jihoon Kang72dd6fc2024-11-27 01:16:39 +0000799 if optionsFile := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse.VendorRamdiskKernelOptionsFile; optionsFile != "" {
800 props.Options_file = proptools.StringPtr(optionsFile)
801 }
802
Spandan Das5b493cd2024-11-07 20:55:56 +0000803 default:
804 ctx.ModuleErrorf("DLKM is not supported for %s\n", partitionType)
Spandan Das912d26b2024-11-06 19:35:17 +0000805 }
Spandan Das5b493cd2024-11-07 20:55:56 +0000806
807 if len(props.Srcs) == 0 {
808 return // do not generate `prebuilt_kernel_modules` if there are no sources
809 }
810
Spandan Das7b25a512024-11-06 20:41:26 +0000811 kernelModule := ctx.CreateModuleInDirectory(
812 kernel.PrebuiltKernelModulesFactory,
813 ".", // create in root directory for now
814 props,
815 )
816 kernelModule.HideFromMake()
817 // Add to deps
818 (*fsGenState.fsDeps[partitionType])[name] = defaultDepCandidateProps(ctx.Config())
Spandan Das5e336422024-11-01 22:31:20 +0000819}
820
Spandan Dase51ff952025-01-09 18:11:59 +0000821// Create an android_info module. This will be used to create /vendor/build.prop
822func (f *filesystemCreator) createAndroidInfo(ctx android.LoadHookContext) {
Spandan Das4cd93b52024-11-05 23:27:03 +0000823 // Create a android_info for vendor
824 // The board info files might be in a directory outside the root soong namespace, so create
825 // the module in "."
826 partitionVars := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse
827 androidInfoProps := &struct {
828 Name *string
829 Board_info_files []string
830 Bootloader_board_name *string
Spandan Das301c2302024-12-12 23:40:52 +0000831 Stem *string
Spandan Das4cd93b52024-11-05 23:27:03 +0000832 }{
Spandan Das301c2302024-12-12 23:40:52 +0000833 Name: proptools.StringPtr(generatedModuleName(ctx.Config(), "android_info.prop")),
Spandan Das4cd93b52024-11-05 23:27:03 +0000834 Board_info_files: partitionVars.BoardInfoFiles,
Spandan Dasf8ac1962025-01-07 17:16:42 -0800835 Stem: proptools.StringPtr("android-info.txt"),
Spandan Das4cd93b52024-11-05 23:27:03 +0000836 }
837 if len(androidInfoProps.Board_info_files) == 0 {
838 androidInfoProps.Bootloader_board_name = proptools.StringPtr(partitionVars.BootLoaderBoardName)
839 }
840 androidInfoProp := ctx.CreateModuleInDirectory(
841 android.AndroidInfoFactory,
842 ".",
843 androidInfoProps,
844 )
845 androidInfoProp.HideFromMake()
Spandan Dase51ff952025-01-09 18:11:59 +0000846}
847
848func (f *filesystemCreator) createVendorBuildProp(ctx android.LoadHookContext) {
Spandan Das4cd93b52024-11-05 23:27:03 +0000849 vendorBuildProps := &struct {
850 Name *string
851 Vendor *bool
852 Stem *string
853 Product_config *string
854 Android_info *string
Spandan Dasf76de202024-12-17 23:26:35 +0000855 Licenses []string
Spandan Das4cd93b52024-11-05 23:27:03 +0000856 }{
857 Name: proptools.StringPtr(generatedModuleName(ctx.Config(), "vendor-build.prop")),
858 Vendor: proptools.BoolPtr(true),
859 Stem: proptools.StringPtr("build.prop"),
860 Product_config: proptools.StringPtr(":product_config"),
Spandan Dase51ff952025-01-09 18:11:59 +0000861 Android_info: proptools.StringPtr(":" + generatedModuleName(ctx.Config(), "android_info.prop")),
Spandan Dasf76de202024-12-17 23:26:35 +0000862 Licenses: []string{"Android-Apache-2.0"},
Spandan Das4cd93b52024-11-05 23:27:03 +0000863 }
864 vendorBuildProp := ctx.CreateModule(
865 android.BuildPropFactory,
866 vendorBuildProps,
867 )
868 vendorBuildProp.HideFromMake()
869}
870
Jihoon Kangefd04b92024-12-10 23:35:09 +0000871func createRecoveryBuildProp(ctx android.LoadHookContext) string {
872 moduleName := generatedModuleName(ctx.Config(), "recovery-prop.default")
873
874 var vendorBuildProp *string
Cole Faust76e8aa12025-01-27 18:21:31 -0800875 if ctx.DeviceConfig().BuildingVendorImage() && ctx.DeviceConfig().VendorPath() == "vendor" {
Jihoon Kangefd04b92024-12-10 23:35:09 +0000876 vendorBuildProp = proptools.StringPtr(":" + generatedModuleName(ctx.Config(), "vendor-build.prop"))
877 }
878
879 recoveryBuildProps := &struct {
880 Name *string
881 System_build_prop *string
882 Vendor_build_prop *string
883 Odm_build_prop *string
884 Product_build_prop *string
885 System_ext_build_prop *string
886
887 Recovery *bool
888 No_full_install *bool
889 Visibility []string
890 }{
891 Name: proptools.StringPtr(moduleName),
892 System_build_prop: proptools.StringPtr(":system-build.prop"),
893 Vendor_build_prop: vendorBuildProp,
894 Odm_build_prop: proptools.StringPtr(":odm-build.prop"),
895 Product_build_prop: proptools.StringPtr(":product-build.prop"),
896 System_ext_build_prop: proptools.StringPtr(":system_ext-build.prop"),
897
898 Recovery: proptools.BoolPtr(true),
899 No_full_install: proptools.BoolPtr(true),
900 Visibility: []string{"//visibility:public"},
901 }
902
903 ctx.CreateModule(android.RecoveryBuildPropModuleFactory, recoveryBuildProps)
904
905 return moduleName
906}
907
Spandan Das8fe68dc2024-10-29 18:20:11 +0000908// createLinkerConfigSourceFilegroups creates filegroup modules to generate linker.config.pb for the following partitions
909// 1. vendor: Using PRODUCT_VENDOR_LINKER_CONFIG_FRAGMENTS (space separated file list)
910// 1. product: Using PRODUCT_PRODUCT_LINKER_CONFIG_FRAGMENTS (space separated file list)
911// It creates a filegroup for each file in the fragment list
Spandan Das312cc412024-10-29 18:20:11 +0000912// The filegroup modules are then added to `linker_config_srcs` of the autogenerated vendor `android_filesystem`.
Spandan Das8fe68dc2024-10-29 18:20:11 +0000913func (f *filesystemCreator) createLinkerConfigSourceFilegroups(ctx android.LoadHookContext, partitionType string) []string {
Spandan Das312cc412024-10-29 18:20:11 +0000914 ret := []string{}
915 partitionVars := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse
Spandan Das8fe68dc2024-10-29 18:20:11 +0000916 var linkerConfigSrcs []string
917 if partitionType == "vendor" {
918 linkerConfigSrcs = android.FirstUniqueStrings(partitionVars.VendorLinkerConfigSrcs)
919 } else if partitionType == "product" {
920 linkerConfigSrcs = android.FirstUniqueStrings(partitionVars.ProductLinkerConfigSrcs)
921 } else {
922 ctx.ModuleErrorf("linker.config.pb is only supported for vendor and product partitions. For system partition, use `android_system_image`")
923 }
924
925 if len(linkerConfigSrcs) > 0 {
Spandan Das312cc412024-10-29 18:20:11 +0000926 // Create a filegroup, and add `:<filegroup_name>` to ret.
927 for index, linkerConfigSrc := range linkerConfigSrcs {
928 dir := filepath.Dir(linkerConfigSrc)
929 base := filepath.Base(linkerConfigSrc)
Spandan Das8fe68dc2024-10-29 18:20:11 +0000930 fgName := generatedModuleName(ctx.Config(), fmt.Sprintf("%s-linker-config-src%s", partitionType, strconv.Itoa(index)))
Spandan Das312cc412024-10-29 18:20:11 +0000931 srcs := []string{base}
932 fgProps := &struct {
933 Name *string
934 Srcs proptools.Configurable[[]string]
935 }{
936 Name: proptools.StringPtr(fgName),
937 Srcs: proptools.NewSimpleConfigurable(srcs),
938 }
939 ctx.CreateModuleInDirectory(
940 android.FileGroupFactory,
941 dir,
942 fgProps,
943 )
944 ret = append(ret, ":"+fgName)
945 }
946 }
947 return ret
948}
949
mrziwang4b0ca972024-10-17 14:56:19 -0700950type filesystemBaseProperty struct {
951 Name *string
952 Compile_multilib *string
Cole Faust3552eb62024-11-06 18:07:26 -0800953 Visibility []string
mrziwang4b0ca972024-10-17 14:56:19 -0700954}
955
956func generateBaseProps(namePtr *string) *filesystemBaseProperty {
957 return &filesystemBaseProperty{
958 Name: namePtr,
959 Compile_multilib: proptools.StringPtr("both"),
Cole Faust3552eb62024-11-06 18:07:26 -0800960 // The vbmeta modules are currently in the root directory and depend on the partitions
961 Visibility: []string{"//.", "//build/soong:__subpackages__"},
mrziwang4b0ca972024-10-17 14:56:19 -0700962 }
963}
964
Cole Faust76e8aa12025-01-27 18:21:31 -0800965func generateFsProps(ctx android.EarlyModuleContext, partitions allGeneratedPartitionData, partitionType string) (*filesystem.FilesystemProperties, bool) {
Cole Faust92ccbe22024-10-03 14:38:37 -0700966 fsProps := &filesystem.FilesystemProperties{}
967
mrziwang4b0ca972024-10-17 14:56:19 -0700968 partitionVars := ctx.Config().ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse
Cole Faust0c4b4152024-11-20 16:42:53 -0800969 var avbInfo avbInfo
Cole Faust76a6e952024-11-07 16:56:45 -0800970 var fsType string
971 if strings.Contains(partitionType, "ramdisk") {
972 fsType = "compressed_cpio"
973 } else {
Cole Faust953476f2024-11-14 14:11:29 -0800974 specificPartitionVars := partitionVars.PartitionQualifiedVariables[partitionType]
Cole Faust76a6e952024-11-07 16:56:45 -0800975 fsType = specificPartitionVars.BoardFileSystemType
Cole Faust0c4b4152024-11-20 16:42:53 -0800976 avbInfo = getAvbInfo(ctx.Config(), partitionType)
Cole Faust953476f2024-11-14 14:11:29 -0800977 if fsType == "" {
978 fsType = "ext4" //default
979 }
Cole Faust76a6e952024-11-07 16:56:45 -0800980 }
Cole Faust76a6e952024-11-07 16:56:45 -0800981
mrziwang4b0ca972024-10-17 14:56:19 -0700982 fsProps.Type = proptools.StringPtr(fsType)
983 if filesystem.GetFsTypeFromString(ctx, *fsProps.Type).IsUnknown() {
984 // Currently the android_filesystem module type only supports a handful of FS types like ext4, erofs
985 return nil, false
986 }
987
Cole Faust3e730972024-12-03 13:12:08 -0800988 if *fsProps.Type == "erofs" {
989 if partitionVars.BoardErofsCompressor != "" {
990 fsProps.Erofs.Compressor = proptools.StringPtr(partitionVars.BoardErofsCompressor)
991 }
992 if partitionVars.BoardErofsCompressorHints != "" {
993 fsProps.Erofs.Compress_hints = proptools.StringPtr(":soong_generated_board_erofs_compress_hints_filegroup")
994 }
995 }
996
Cole Faust92ccbe22024-10-03 14:38:37 -0700997 // Don't build this module on checkbuilds, the soong-built partitions are still in-progress
998 // and sometimes don't build.
999 fsProps.Unchecked_module = proptools.BoolPtr(true)
1000
Jihoon Kang98047cf2024-10-02 17:13:54 +00001001 // BOARD_AVB_ENABLE
Cole Faust0c4b4152024-11-20 16:42:53 -08001002 fsProps.Use_avb = avbInfo.avbEnable
Jihoon Kang98047cf2024-10-02 17:13:54 +00001003 // BOARD_AVB_KEY_PATH
Cole Faust0c4b4152024-11-20 16:42:53 -08001004 fsProps.Avb_private_key = avbInfo.avbkeyFilegroup
Jihoon Kang98047cf2024-10-02 17:13:54 +00001005 // BOARD_AVB_ALGORITHM
Cole Faust0c4b4152024-11-20 16:42:53 -08001006 fsProps.Avb_algorithm = avbInfo.avbAlgorithm
Jihoon Kang98047cf2024-10-02 17:13:54 +00001007 // BOARD_AVB_SYSTEM_ROLLBACK_INDEX
Cole Faust0c4b4152024-11-20 16:42:53 -08001008 fsProps.Rollback_index = avbInfo.avbRollbackIndex
Jihoon Kang2f0d1932025-01-17 19:22:44 +00001009 // BOARD_AVB_SYSTEM_ROLLBACK_INDEX_LOCATION
1010 fsProps.Rollback_index_location = avbInfo.avbRollbackIndexLocation
Cole Fauste1676122024-12-03 17:32:25 -08001011 fsProps.Avb_hash_algorithm = avbInfo.avbHashAlgorithm
Jihoon Kang98047cf2024-10-02 17:13:54 +00001012
Cole Faust92ccbe22024-10-03 14:38:37 -07001013 fsProps.Partition_name = proptools.StringPtr(partitionType)
Jihoon Kang98047cf2024-10-02 17:13:54 +00001014
Cole Faust0d467052024-12-04 17:19:19 -08001015 switch partitionType {
1016 // The partitions that support file_contexts came from here:
1017 // https://cs.android.com/android/platform/superproject/main/+/main:build/make/core/Makefile;l=2270;drc=ad7cfb56010cb22c3aa0e70cf71c804352553526
1018 case "system", "userdata", "cache", "vendor", "product", "system_ext", "odm", "vendor_dlkm", "odm_dlkm", "system_dlkm", "oem":
1019 fsProps.Precompiled_file_contexts = proptools.StringPtr(":file_contexts_bin_gen")
1020 }
1021
Jihoon Kang0d545b82024-10-11 00:21:57 +00001022 fsProps.Is_auto_generated = proptools.BoolPtr(true)
Cole Faust1c026062024-12-16 14:28:23 -08001023 if partitionType != "system" {
Jihoon Kang983dd882025-01-13 23:14:11 +00001024 mountPoint := proptools.StringPtr(partitionType)
1025 // https://cs.android.com/android/platform/superproject/main/+/main:build/make/tools/releasetools/build_image.py;l=1012;drc=3f576a753594bad3fc838ccb8b1b72f7efac1d50
1026 if partitionType == "userdata" {
1027 mountPoint = proptools.StringPtr("data")
1028 }
1029 fsProps.Mount_point = mountPoint
1030
Cole Faust1c026062024-12-16 14:28:23 -08001031 }
Jihoon Kang0d545b82024-10-11 00:21:57 +00001032
Cole Faust76e8aa12025-01-27 18:21:31 -08001033 partitionSpecificFsProps(ctx, partitions, fsProps, partitionType)
Jihoon Kang6850d8f2024-10-17 20:45:58 +00001034
mrziwang4b0ca972024-10-17 14:56:19 -07001035 return fsProps, true
Cole Faust92ccbe22024-10-03 14:38:37 -07001036}
1037
Cole Faust0c4b4152024-11-20 16:42:53 -08001038type avbInfo struct {
Jihoon Kang2f0d1932025-01-17 19:22:44 +00001039 avbEnable *bool
1040 avbKeyPath *string
1041 avbkeyFilegroup *string
1042 avbAlgorithm *string
1043 avbRollbackIndex *int64
1044 avbRollbackIndexLocation *int64
1045 avbMode *string
1046 avbHashAlgorithm *string
Cole Faust0c4b4152024-11-20 16:42:53 -08001047}
1048
1049func getAvbInfo(config android.Config, partitionType string) avbInfo {
1050 partitionVars := config.ProductVariables().PartitionVarsForSoongMigrationOnlyDoNotUse
1051 specificPartitionVars := partitionVars.PartitionQualifiedVariables[partitionType]
1052 var result avbInfo
1053 boardAvbEnable := partitionVars.BoardAvbEnable
1054 if boardAvbEnable {
1055 result.avbEnable = proptools.BoolPtr(true)
Cole Fauste1676122024-12-03 17:32:25 -08001056 // There are "global" and "specific" copies of a lot of these variables. Sometimes they
1057 // choose the specific and then fall back to the global one if it's not set, other times
1058 // the global one actually only applies to the vbmeta partition.
1059 if partitionType == "vbmeta" {
1060 if partitionVars.BoardAvbKeyPath != "" {
1061 result.avbKeyPath = proptools.StringPtr(partitionVars.BoardAvbKeyPath)
1062 }
1063 if partitionVars.BoardAvbRollbackIndex != "" {
1064 parsed, err := strconv.ParseInt(partitionVars.BoardAvbRollbackIndex, 10, 64)
1065 if err != nil {
1066 panic(fmt.Sprintf("Rollback index must be an int, got %s", partitionVars.BoardAvbRollbackIndex))
1067 }
1068 result.avbRollbackIndex = &parsed
1069 }
1070 }
Cole Faust0c4b4152024-11-20 16:42:53 -08001071 if specificPartitionVars.BoardAvbKeyPath != "" {
1072 result.avbKeyPath = proptools.StringPtr(specificPartitionVars.BoardAvbKeyPath)
Cole Faust0c4b4152024-11-20 16:42:53 -08001073 }
1074 if specificPartitionVars.BoardAvbAlgorithm != "" {
1075 result.avbAlgorithm = proptools.StringPtr(specificPartitionVars.BoardAvbAlgorithm)
1076 } else if partitionVars.BoardAvbAlgorithm != "" {
1077 result.avbAlgorithm = proptools.StringPtr(partitionVars.BoardAvbAlgorithm)
1078 }
1079 if specificPartitionVars.BoardAvbRollbackIndex != "" {
1080 parsed, err := strconv.ParseInt(specificPartitionVars.BoardAvbRollbackIndex, 10, 64)
1081 if err != nil {
1082 panic(fmt.Sprintf("Rollback index must be an int, got %s", specificPartitionVars.BoardAvbRollbackIndex))
1083 }
1084 result.avbRollbackIndex = &parsed
Cole Fauste1676122024-12-03 17:32:25 -08001085 }
Jihoon Kang2f0d1932025-01-17 19:22:44 +00001086 if specificPartitionVars.BoardAvbRollbackIndexLocation != "" {
1087 parsed, err := strconv.ParseInt(specificPartitionVars.BoardAvbRollbackIndexLocation, 10, 64)
1088 if err != nil {
1089 panic(fmt.Sprintf("Rollback index location must be an int, got %s", specificPartitionVars.BoardAvbRollbackIndexLocation))
1090 }
1091 result.avbRollbackIndexLocation = &parsed
1092 }
Cole Fauste1676122024-12-03 17:32:25 -08001093
1094 // Make allows you to pass arbitrary arguments to avbtool via this variable, but in practice
1095 // it's only used for --hash_algorithm. The soong module has a dedicated property for the
1096 // hashtree algorithm, and doesn't allow custom arguments, so just extract the hashtree
1097 // algorithm out of the arbitrary arguments.
1098 addHashtreeFooterArgs := strings.Split(specificPartitionVars.BoardAvbAddHashtreeFooterArgs, " ")
1099 if i := slices.Index(addHashtreeFooterArgs, "--hash_algorithm"); i >= 0 {
1100 result.avbHashAlgorithm = &addHashtreeFooterArgs[i+1]
1101 }
1102
Cole Faust0c4b4152024-11-20 16:42:53 -08001103 result.avbMode = proptools.StringPtr("make_legacy")
1104 }
1105 if result.avbKeyPath != nil {
1106 fsGenState := config.Get(fsGenStateOnceKey).(*FsGenState)
1107 filegroup := fsGenState.avbKeyFilegroups[*result.avbKeyPath]
1108 result.avbkeyFilegroup = proptools.StringPtr(":" + filegroup)
1109 }
1110 return result
1111}
1112
Cole Faust76e8aa12025-01-27 18:21:31 -08001113func (f *filesystemCreator) createFileListDiffTest(ctx android.ModuleContext, partitionType string, partitionModuleName string) android.Path {
mrziwang6aefe7d2025-01-07 16:27:53 -08001114 partitionImage := ctx.GetDirectDepWithTag(partitionModuleName, generatedFilesystemDepTag)
1115 filesystemInfo, ok := android.OtherModuleProvider(ctx, partitionImage, filesystem.FilesystemProvider)
Cole Faust92ccbe22024-10-03 14:38:37 -07001116 if !ok {
1117 ctx.ModuleErrorf("Expected module %s to provide FileysystemInfo", partitionModuleName)
Cole Faust76e8aa12025-01-27 18:21:31 -08001118 return nil
Cole Faust92ccbe22024-10-03 14:38:37 -07001119 }
1120 makeFileList := android.PathForArbitraryOutput(ctx, fmt.Sprintf("target/product/%s/obj/PACKAGING/%s_intermediates/file_list.txt", ctx.Config().DeviceName(), partitionType))
Jihoon Kang9e866c82024-10-07 22:39:18 +00001121 diffTestResultFile := android.PathForModuleOut(ctx, fmt.Sprintf("diff_test_%s.txt", partitionModuleName))
Cole Faust92ccbe22024-10-03 14:38:37 -07001122
1123 builder := android.NewRuleBuilder(pctx, ctx)
1124 builder.Command().BuiltTool("file_list_diff").
1125 Input(makeFileList).
1126 Input(filesystemInfo.FileListFile).
Cole Faust56301572024-11-07 15:22:42 -08001127 Text(partitionModuleName)
Cole Faust92ccbe22024-10-03 14:38:37 -07001128 builder.Command().Text("touch").Output(diffTestResultFile)
1129 builder.Build(partitionModuleName+" diff test", partitionModuleName+" diff test")
1130 return diffTestResultFile
1131}
1132
1133func createFailingCommand(ctx android.ModuleContext, message string) android.Path {
1134 hasher := sha256.New()
1135 hasher.Write([]byte(message))
1136 filename := fmt.Sprintf("failing_command_%x.txt", hasher.Sum(nil))
1137 file := android.PathForModuleOut(ctx, filename)
1138 builder := android.NewRuleBuilder(pctx, ctx)
1139 builder.Command().Textf("echo %s", proptools.NinjaAndShellEscape(message))
1140 builder.Command().Text("exit 1 #").Output(file)
1141 builder.Build("failing command "+filename, "failing command "+filename)
1142 return file
1143}
1144
Cole Faust3552eb62024-11-06 18:07:26 -08001145func createVbmetaDiff(ctx android.ModuleContext, vbmetaModuleName string, vbmetaPartitionName string) android.Path {
1146 vbmetaModule := ctx.GetDirectDepWithTag(vbmetaModuleName, generatedVbmetaPartitionDepTag)
1147 outputFilesProvider, ok := android.OtherModuleProvider(ctx, vbmetaModule, android.OutputFilesProvider)
1148 if !ok {
1149 ctx.ModuleErrorf("Expected module %s to provide OutputFiles", vbmetaModule)
1150 }
1151 if len(outputFilesProvider.DefaultOutputFiles) != 1 {
1152 ctx.ModuleErrorf("Expected 1 output file from module %s", vbmetaModule)
1153 }
1154 soongVbMetaFile := outputFilesProvider.DefaultOutputFiles[0]
1155 makeVbmetaFile := android.PathForArbitraryOutput(ctx, fmt.Sprintf("target/product/%s/%s.img", ctx.Config().DeviceName(), vbmetaPartitionName))
1156
1157 diffTestResultFile := android.PathForModuleOut(ctx, fmt.Sprintf("diff_test_%s.txt", vbmetaModuleName))
Cole Faustf2a6e8b2024-11-14 10:54:48 -08001158 createDiffTest(ctx, diffTestResultFile, soongVbMetaFile, makeVbmetaFile)
1159 return diffTestResultFile
1160}
1161
1162func createDiffTest(ctx android.ModuleContext, diffTestResultFile android.WritablePath, file1 android.Path, file2 android.Path) {
Cole Faust3552eb62024-11-06 18:07:26 -08001163 builder := android.NewRuleBuilder(pctx, ctx)
1164 builder.Command().Text("diff").
Cole Faustf2a6e8b2024-11-14 10:54:48 -08001165 Input(file1).
1166 Input(file2)
Cole Faust3552eb62024-11-06 18:07:26 -08001167 builder.Command().Text("touch").Output(diffTestResultFile)
Cole Faustf2a6e8b2024-11-14 10:54:48 -08001168 builder.Build("diff test "+diffTestResultFile.String(), "diff test")
Cole Faust3552eb62024-11-06 18:07:26 -08001169}
1170
mrziwang6aefe7d2025-01-07 16:27:53 -08001171type imageDepTagType struct {
Cole Faust92ccbe22024-10-03 14:38:37 -07001172 blueprint.BaseDependencyTag
1173}
1174
mrziwang6aefe7d2025-01-07 16:27:53 -08001175var generatedFilesystemDepTag imageDepTagType
1176var generatedVbmetaPartitionDepTag imageDepTagType
Cole Faust92ccbe22024-10-03 14:38:37 -07001177
1178func (f *filesystemCreator) DepsMutator(ctx android.BottomUpMutatorContext) {
Cole Faust76e8aa12025-01-27 18:21:31 -08001179 for _, name := range ctx.Config().Get(fsGenStateOnceKey).(*FsGenState).soongGeneratedPartitions.names() {
1180 ctx.AddDependency(ctx.Module(), generatedFilesystemDepTag, name)
Cole Faust92ccbe22024-10-03 14:38:37 -07001181 }
Cole Faust3552eb62024-11-06 18:07:26 -08001182 for _, vbmetaModule := range f.properties.Vbmeta_module_names {
1183 ctx.AddDependency(ctx.Module(), generatedVbmetaPartitionDepTag, vbmetaModule)
1184 }
Jihoon Kang98047cf2024-10-02 17:13:54 +00001185}
1186
1187func (f *filesystemCreator) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Cole Faust92ccbe22024-10-03 14:38:37 -07001188 if ctx.ModuleDir() != "build/soong/fsgen" {
1189 ctx.ModuleErrorf("There can only be one soong_filesystem_creator in build/soong/fsgen")
1190 }
1191 f.HideFromMake()
Jihoon Kang98047cf2024-10-02 17:13:54 +00001192
Cole Faust76e8aa12025-01-27 18:21:31 -08001193 partitions := ctx.Config().Get(fsGenStateOnceKey).(*FsGenState).soongGeneratedPartitions
1194
Jihoon Kang4e5d8de2024-10-19 01:59:58 +00001195 var content strings.Builder
1196 generatedBp := android.PathForModuleOut(ctx, "soong_generated_product_config.bp")
Cole Faust76e8aa12025-01-27 18:21:31 -08001197 for _, partition := range partitions.types() {
Jihoon Kang4e5d8de2024-10-19 01:59:58 +00001198 content.WriteString(generateBpContent(ctx, partition))
1199 content.WriteString("\n")
1200 }
1201 android.WriteFileRule(ctx, generatedBp, content.String())
1202
mrziwang8f86c882024-10-03 12:34:33 -07001203 ctx.Phony("product_config_to_bp", generatedBp)
1204
Spandan Das68fb7cb2025-02-03 23:49:27 +00001205 if !ctx.Config().KatiEnabled() {
1206 // Cannot diff since the kati packaging rules will not be created.
1207 return
1208 }
Cole Faust92ccbe22024-10-03 14:38:37 -07001209 var diffTestFiles []android.Path
Cole Faust76e8aa12025-01-27 18:21:31 -08001210 for _, partitionType := range partitions.types() {
1211 diffTestFile := f.createFileListDiffTest(ctx, partitionType, partitions.nameForType(partitionType))
Jihoon Kang72f812f2024-10-17 18:46:24 +00001212 diffTestFiles = append(diffTestFiles, diffTestFile)
1213 ctx.Phony(fmt.Sprintf("soong_generated_%s_filesystem_test", partitionType), diffTestFile)
Cole Faust92ccbe22024-10-03 14:38:37 -07001214 }
Cole Faust76e8aa12025-01-27 18:21:31 -08001215 for _, partitionType := range slices.Concat(partitions.unsupportedTypes(), f.properties.Unsupported_partition_types) {
Jihoon Kang72f812f2024-10-17 18:46:24 +00001216 diffTestFile := createFailingCommand(ctx, fmt.Sprintf("Couldn't build %s partition", partitionType))
1217 diffTestFiles = append(diffTestFiles, diffTestFile)
1218 ctx.Phony(fmt.Sprintf("soong_generated_%s_filesystem_test", partitionType), diffTestFile)
Cole Faust92ccbe22024-10-03 14:38:37 -07001219 }
Cole Faust3552eb62024-11-06 18:07:26 -08001220 for i, vbmetaModule := range f.properties.Vbmeta_module_names {
1221 diffTestFile := createVbmetaDiff(ctx, vbmetaModule, f.properties.Vbmeta_partition_names[i])
1222 diffTestFiles = append(diffTestFiles, diffTestFile)
1223 ctx.Phony(fmt.Sprintf("soong_generated_%s_filesystem_test", f.properties.Vbmeta_partition_names[i]), diffTestFile)
1224 }
Cole Faustf2a6e8b2024-11-14 10:54:48 -08001225 if f.properties.Boot_image != "" {
1226 diffTestFile := android.PathForModuleOut(ctx, "boot_diff_test.txt")
1227 soongBootImg := android.PathForModuleSrc(ctx, f.properties.Boot_image)
1228 makeBootImage := android.PathForArbitraryOutput(ctx, fmt.Sprintf("target/product/%s/boot.img", ctx.Config().DeviceName()))
1229 createDiffTest(ctx, diffTestFile, soongBootImg, makeBootImage)
1230 diffTestFiles = append(diffTestFiles, diffTestFile)
1231 ctx.Phony("soong_generated_boot_filesystem_test", diffTestFile)
1232 }
Cole Faust24938e22024-11-18 14:01:58 -08001233 if f.properties.Vendor_boot_image != "" {
1234 diffTestFile := android.PathForModuleOut(ctx, "vendor_boot_diff_test.txt")
Jihoon Kang95eb1da2024-11-19 20:55:20 +00001235 soongBootImg := android.PathForModuleSrc(ctx, f.properties.Vendor_boot_image)
Cole Faust24938e22024-11-18 14:01:58 -08001236 makeBootImage := android.PathForArbitraryOutput(ctx, fmt.Sprintf("target/product/%s/vendor_boot.img", ctx.Config().DeviceName()))
1237 createDiffTest(ctx, diffTestFile, soongBootImg, makeBootImage)
1238 diffTestFiles = append(diffTestFiles, diffTestFile)
1239 ctx.Phony("soong_generated_vendor_boot_filesystem_test", diffTestFile)
1240 }
Jihoon Kang95eb1da2024-11-19 20:55:20 +00001241 if f.properties.Init_boot_image != "" {
1242 diffTestFile := android.PathForModuleOut(ctx, "init_boot_diff_test.txt")
1243 soongBootImg := android.PathForModuleSrc(ctx, f.properties.Init_boot_image)
1244 makeBootImage := android.PathForArbitraryOutput(ctx, fmt.Sprintf("target/product/%s/init_boot.img", ctx.Config().DeviceName()))
1245 createDiffTest(ctx, diffTestFile, soongBootImg, makeBootImage)
1246 diffTestFiles = append(diffTestFiles, diffTestFile)
1247 ctx.Phony("soong_generated_init_boot_filesystem_test", diffTestFile)
1248 }
mrziwang79730d42024-12-02 22:13:59 -08001249 if f.properties.Super_image != "" {
1250 diffTestFile := android.PathForModuleOut(ctx, "super_diff_test.txt")
1251 soongSuperImg := android.PathForModuleSrc(ctx, f.properties.Super_image)
1252 makeSuperImage := android.PathForArbitraryOutput(ctx, fmt.Sprintf("target/product/%s/super.img", ctx.Config().DeviceName()))
1253 createDiffTest(ctx, diffTestFile, soongSuperImg, makeSuperImage)
1254 diffTestFiles = append(diffTestFiles, diffTestFile)
1255 ctx.Phony("soong_generated_super_filesystem_test", diffTestFile)
1256 }
Cole Faust92ccbe22024-10-03 14:38:37 -07001257 ctx.Phony("soong_generated_filesystem_tests", diffTestFiles...)
Jihoon Kang98047cf2024-10-02 17:13:54 +00001258}
mrziwang8f86c882024-10-03 12:34:33 -07001259
mrziwang8f86c882024-10-03 12:34:33 -07001260func generateBpContent(ctx android.EarlyModuleContext, partitionType string) string {
Cole Faust76e8aa12025-01-27 18:21:31 -08001261 fsGenState := ctx.Config().Get(fsGenStateOnceKey).(*FsGenState)
1262 fsProps, fsTypeSupported := generateFsProps(ctx, fsGenState.soongGeneratedPartitions, partitionType)
mrziwang4b0ca972024-10-17 14:56:19 -07001263 if !fsTypeSupported {
1264 return ""
mrziwang8f86c882024-10-03 12:34:33 -07001265 }
1266
mrziwang4b0ca972024-10-17 14:56:19 -07001267 baseProps := generateBaseProps(proptools.StringPtr(generatedModuleNameForPartition(ctx.Config(), partitionType)))
Jihoon Kang0d7b0112024-11-13 20:44:05 +00001268 deps := fsGenState.fsDeps[partitionType]
1269 highPriorityDeps := fsGenState.generatedPrebuiltEtcModuleNames
1270 depProps := generateDepStruct(*deps, highPriorityDeps)
mrziwang8f86c882024-10-03 12:34:33 -07001271
mrziwang4b0ca972024-10-17 14:56:19 -07001272 result, err := proptools.RepackProperties([]interface{}{baseProps, fsProps, depProps})
mrziwang8f86c882024-10-03 12:34:33 -07001273 if err != nil {
Cole Faustae3e1d32024-11-05 13:22:50 -08001274 ctx.ModuleErrorf("%s", err.Error())
1275 return ""
mrziwang8f86c882024-10-03 12:34:33 -07001276 }
1277
Jihoon Kang4e5d8de2024-10-19 01:59:58 +00001278 moduleType := "android_filesystem"
1279 if partitionType == "system" {
1280 moduleType = "android_system_image"
1281 }
1282
mrziwang8f86c882024-10-03 12:34:33 -07001283 file := &parser.File{
1284 Defs: []parser.Definition{
1285 &parser.Module{
Jihoon Kang4e5d8de2024-10-19 01:59:58 +00001286 Type: moduleType,
mrziwang8f86c882024-10-03 12:34:33 -07001287 Map: *result,
1288 },
1289 },
1290 }
1291 bytes, err := parser.Print(file)
1292 if err != nil {
1293 ctx.ModuleErrorf(err.Error())
1294 }
1295 return strings.TrimSpace(string(bytes))
1296}