blob: 4f4ab3a39f71c50041d7f1982b44e40ef1a776c5 [file] [log] [blame]
/*
* 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.
*/
#include "linkerconfig/namespacebuilder.h"
#include <string>
#include <vector>
#include "linkerconfig/environment.h"
using android::linkerconfig::modules::AsanPath;
using android::linkerconfig::modules::Namespace;
namespace {
const std::vector<std::string> kLibsFromDefaultLegacy = {
"libandroid.so",
"libbinder_ndk.so",
"libc.so",
"libcgrouprc.so",
"libdl.so",
"liblog.so",
"libmediametrics.so",
"libmediandk.so",
"libm.so",
"libvndksupport.so",
"libclang_rt.asan-aarch64-android.so",
"libclang_rt.asan-arm-android.so",
"libclang_rt.asan-i686-android.so",
"libclang_rt.asan-x86_64-android.so",
"libclang_rt.hwasan-aarch64-android.so"};
const std::vector<std::string> kLibsFromDefault = {
"@{LLNDK_LIBRARIES}",
"libbinder_ndk.so",
"libmediametrics.so",
"@{SANITIZER_RUNTIME_LIBRARIES}"};
const std::vector<std::string> kLibsFromDefaultSystem = {"libcgrouprc.so"};
} // namespace
namespace android {
namespace linkerconfig {
namespace contents {
Namespace BuildMediaNamespace([[maybe_unused]] const Context& ctx) {
bool is_legacy = android::linkerconfig::modules::IsLegacyDevice();
bool is_system_section = ctx.IsSystemSection();
Namespace ns("media", /*is_isolated=*/true, /*is_visible=*/true);
ns.AddSearchPath("/apex/com.android.media/${LIB}", AsanPath::SAME_PATH);
ns.AddPermittedPath("/apex/com.android.media/${LIB}/extractors",
AsanPath::SAME_PATH);
auto& link_to_default = ns.CreateLink("default");
if (is_legacy) {
link_to_default.AddSharedLib(kLibsFromDefaultLegacy);
} else {
link_to_default.AddSharedLib(kLibsFromDefault);
if (is_system_section) {
link_to_default.AddSharedLib(kLibsFromDefaultSystem);
}
}
ns.CreateLink("neuralnetworks").AddSharedLib("libneuralnetworks.so");
return ns;
}
} // namespace contents
} // namespace linkerconfig
} // namespace android