2019-11-18 03:16:27 +01:00
|
|
|
// Copyright (C) 2019 The Android Open Source Project
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package apex
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"android/soong/android"
|
|
|
|
"android/soong/cc"
|
|
|
|
|
|
|
|
"github.com/google/blueprint/proptools"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2019-12-16 09:45:32 +01:00
|
|
|
vndkApexName = "com.android.vndk"
|
|
|
|
vndkApexNamePrefix = vndkApexName + ".v"
|
2019-11-18 03:16:27 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// apex_vndk creates a special variant of apex modules which contains only VNDK libraries.
|
|
|
|
// If `vndk_version` is specified, the VNDK libraries of the specified VNDK version are gathered automatically.
|
|
|
|
// If not specified, then the "current" versions are gathered.
|
|
|
|
func vndkApexBundleFactory() android.Module {
|
|
|
|
bundle := newApexBundle()
|
|
|
|
bundle.vndkApex = true
|
|
|
|
bundle.AddProperties(&bundle.vndkProperties)
|
|
|
|
android.AddLoadHook(bundle, func(ctx android.LoadHookContext) {
|
|
|
|
ctx.AppendProperties(&struct {
|
|
|
|
Compile_multilib *string
|
|
|
|
}{
|
|
|
|
proptools.StringPtr("both"),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
return bundle
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *apexBundle) vndkVersion(config android.DeviceConfig) string {
|
|
|
|
vndkVersion := proptools.StringDefault(a.vndkProperties.Vndk_version, "current")
|
|
|
|
if vndkVersion == "current" {
|
|
|
|
vndkVersion = config.PlatformVndkVersion()
|
|
|
|
}
|
|
|
|
return vndkVersion
|
|
|
|
}
|
|
|
|
|
|
|
|
type apexVndkProperties struct {
|
|
|
|
// Indicates VNDK version of which this VNDK APEX bundles VNDK libs. Default is Platform VNDK Version.
|
|
|
|
Vndk_version *string
|
|
|
|
}
|
|
|
|
|
|
|
|
func apexVndkMutator(mctx android.TopDownMutatorContext) {
|
|
|
|
if ab, ok := mctx.Module().(*apexBundle); ok && ab.vndkApex {
|
|
|
|
if ab.IsNativeBridgeSupported() {
|
|
|
|
mctx.PropertyErrorf("native_bridge_supported", "%q doesn't support native bridge binary.", mctx.ModuleType())
|
|
|
|
}
|
|
|
|
|
|
|
|
vndkVersion := ab.vndkVersion(mctx.DeviceConfig())
|
2024-01-11 08:03:13 +01:00
|
|
|
if vndkVersion != "" {
|
|
|
|
apiLevel, err := android.ApiLevelFromUser(mctx, vndkVersion)
|
|
|
|
if err != nil {
|
|
|
|
mctx.PropertyErrorf("vndk_version", "%s", err.Error())
|
|
|
|
return
|
|
|
|
}
|
2023-01-26 18:54:42 +01:00
|
|
|
|
2024-01-11 08:03:13 +01:00
|
|
|
targets := mctx.MultiTargets()
|
|
|
|
if len(targets) > 0 && apiLevel.LessThan(cc.MinApiForArch(mctx, targets[0].Arch.ArchType)) &&
|
|
|
|
vndkVersion != mctx.DeviceConfig().PlatformVndkVersion() {
|
|
|
|
// Disable VNDK APEXes for VNDK versions less than the minimum supported API
|
|
|
|
// level for the primary architecture. This validation is skipped if the VNDK
|
|
|
|
// version matches the platform VNDK version, which can occur when the device
|
|
|
|
// config targets the 'current' VNDK (see `vndkVersion`).
|
|
|
|
ab.Disable()
|
|
|
|
}
|
|
|
|
if proptools.String(ab.vndkProperties.Vndk_version) != "" &&
|
|
|
|
mctx.DeviceConfig().PlatformVndkVersion() != "" &&
|
|
|
|
apiLevel.GreaterThanOrEqualTo(android.ApiLevelOrPanic(mctx, mctx.DeviceConfig().PlatformVndkVersion())) {
|
|
|
|
ab.Disable()
|
|
|
|
}
|
2023-08-18 10:51:14 +02:00
|
|
|
}
|
2019-11-18 03:16:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func apexVndkDepsMutator(mctx android.BottomUpMutatorContext) {
|
|
|
|
if m, ok := mctx.Module().(*cc.Module); ok && cc.IsForVndkApex(mctx, m) {
|
|
|
|
vndkVersion := m.VndkVersion()
|
2020-03-27 08:06:55 +01:00
|
|
|
// For VNDK-Lite device, we gather core-variants of VNDK-Sp libraries, which doesn't have VNDK version defined
|
|
|
|
if vndkVersion == "" {
|
|
|
|
vndkVersion = mctx.DeviceConfig().PlatformVndkVersion()
|
|
|
|
}
|
2024-01-11 08:03:13 +01:00
|
|
|
|
|
|
|
if vndkVersion == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-03-02 19:15:29 +01:00
|
|
|
if vndkVersion == mctx.DeviceConfig().PlatformVndkVersion() {
|
|
|
|
vndkVersion = "current"
|
|
|
|
} else {
|
|
|
|
vndkVersion = "v" + vndkVersion
|
|
|
|
}
|
|
|
|
|
|
|
|
vndkApexName := "com.android.vndk." + vndkVersion
|
|
|
|
|
|
|
|
if mctx.OtherModuleExists(vndkApexName) {
|
|
|
|
mctx.AddReverseDependency(mctx.Module(), sharedLibTag, vndkApexName)
|
2019-11-18 03:16:27 +01:00
|
|
|
}
|
|
|
|
} else if a, ok := mctx.Module().(*apexBundle); ok && a.vndkApex {
|
|
|
|
vndkVersion := proptools.StringDefault(a.vndkProperties.Vndk_version, "current")
|
2023-08-11 03:14:43 +02:00
|
|
|
mctx.AddDependency(mctx.Module(), prebuiltTag, cc.VndkLibrariesTxtModules(vndkVersion, mctx)...)
|
2019-11-18 03:16:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-07 17:57:58 +01:00
|
|
|
// name is module.BaseModuleName() which is used as LOCAL_MODULE_NAME and also LOCAL_OVERRIDES_*
|
2023-08-23 04:11:43 +02:00
|
|
|
func makeCompatSymlinks(name string, ctx android.ModuleContext) (symlinks android.InstallPaths) {
|
2019-11-18 03:16:27 +01:00
|
|
|
// small helper to add symlink commands
|
2021-11-04 20:01:18 +01:00
|
|
|
addSymlink := func(target string, dir android.InstallPath, linkName string) {
|
2023-08-23 04:11:43 +02:00
|
|
|
symlinks = append(symlinks, ctx.InstallAbsoluteSymlink(dir, linkName, target))
|
2019-11-18 03:16:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(b/142911355): [VNDK APEX] Fix hard-coded references to /system/lib/vndk
|
|
|
|
// When all hard-coded references are fixed, remove symbolic links
|
|
|
|
// Note that we should keep following symlinks for older VNDKs (<=29)
|
|
|
|
// Since prebuilt vndk libs still depend on system/lib/vndk path
|
2020-04-14 07:22:31 +02:00
|
|
|
if strings.HasPrefix(name, vndkApexNamePrefix) {
|
|
|
|
vndkVersion := strings.TrimPrefix(name, vndkApexNamePrefix)
|
2020-07-23 07:32:17 +02:00
|
|
|
if ver, err := android.ApiLevelFromUser(ctx, vndkVersion); err != nil {
|
2020-04-14 07:22:31 +02:00
|
|
|
ctx.ModuleErrorf("apex_vndk should be named as %v<ver:number>: %s", vndkApexNamePrefix, name)
|
|
|
|
return
|
2020-07-23 07:32:17 +02:00
|
|
|
} else if ver.GreaterThan(android.SdkVersion_Android10) {
|
2020-04-14 07:22:31 +02:00
|
|
|
return
|
2020-01-07 17:57:58 +01:00
|
|
|
}
|
2019-11-18 03:16:27 +01:00
|
|
|
// the name of vndk apex is formatted "com.android.vndk.v" + version
|
2020-01-07 17:57:58 +01:00
|
|
|
apexName := vndkApexNamePrefix + vndkVersion
|
2019-11-18 03:16:27 +01:00
|
|
|
if ctx.Config().Android64() {
|
2021-11-04 20:01:18 +01:00
|
|
|
dir := android.PathForModuleInPartitionInstall(ctx, "system", "lib64")
|
|
|
|
addSymlink("/apex/"+apexName+"/lib64", dir, "vndk-sp-"+vndkVersion)
|
|
|
|
addSymlink("/apex/"+apexName+"/lib64", dir, "vndk-"+vndkVersion)
|
2019-11-18 03:16:27 +01:00
|
|
|
}
|
|
|
|
if !ctx.Config().Android64() || ctx.DeviceConfig().DeviceSecondaryArch() != "" {
|
2021-11-04 20:01:18 +01:00
|
|
|
dir := android.PathForModuleInPartitionInstall(ctx, "system", "lib")
|
|
|
|
addSymlink("/apex/"+apexName+"/lib", dir, "vndk-sp-"+vndkVersion)
|
|
|
|
addSymlink("/apex/"+apexName+"/lib", dir, "vndk-"+vndkVersion)
|
2019-10-25 11:17:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// http://b/121248172 - create a link from /system/usr/icu to
|
|
|
|
// /apex/com.android.i18n/etc/icu so that apps can find the ICU .dat file.
|
|
|
|
// A symlink can't overwrite a directory and the /system/usr/icu directory once
|
|
|
|
// existed so the required structure must be created whatever we find.
|
2020-01-07 17:57:58 +01:00
|
|
|
if name == "com.android.i18n" {
|
2021-11-04 20:01:18 +01:00
|
|
|
dir := android.PathForModuleInPartitionInstall(ctx, "system", "usr")
|
|
|
|
addSymlink("/apex/com.android.i18n/etc/icu", dir, "icu")
|
2019-10-25 11:17:23 +02:00
|
|
|
}
|
|
|
|
|
2021-11-04 20:01:18 +01:00
|
|
|
return symlinks
|
2019-11-18 03:16:27 +01:00
|
|
|
}
|