blob: 7df59f2c2c26f84814ae046f06c6720299ab01e2 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/components.gni")
import("//build/dist/component_manifest_resources.gni")
import("//build/test.gni")
import("//src/storage/testing/driver_test_realm.gni")
import("//tools/cmc/build/cmc.gni")
declare_args() {
# blobfs_maximum_runtime_bytes is an upper bound on the partition size on the device. Partitions
# can grow as needed if there are extra slices available in FVM. This limit prevents the blobfs
# partition from taking too much space away from other uses.
#
# Pass the empty string for no limit.
blobfs_maximum_runtime_bytes = ""
# minfs_maximum_runtime_bytes is an upper bound on the partition size on the device. Partitions
# can grow as needed if there are extra slices available in FVM. This limit prevents the minfs
# partition from taking too much space away from other uses.
#
# Pass the empty string for no limit.
minfs_maximum_runtime_bytes = ""
# If format_minfs_on_corruption is true (the default), fshost formats minfs partition on finding
# it corrupted. Set to false to keep the devices in a corrupted state which might be of help to
# debug issues.
format_minfs_on_corruption = true
# If extract_minfs_metadata_on_corruption is true, fshost extracts minfs metadata on finding it
# corrupted. Setting this flag to true helps debugging corruptions.
extract_minfs_metadata_on_corruption = false
# This flag isn't stable yet, don't use it.
# Set to true to enable fxfs/f2fs instead of minfs. If set, any existing minfs partition will be
# migrated in-place to fxfs/f2fs when fshost mounts it.
unstable_feature_use_fxfs = false
unstable_feature_use_f2fs = false
# Set to true to enable legacy data partition names.
allow_legacy_data_partition_names = true
# Make fshost watch for NAND devices.
fshost_watch_for_nand = false
}
group("tests") {
testonly = true
deps = [ ":fshost-tests" ]
}
source_set("headers") {
sources = [ "constants.h" ]
}
source_set("launcher") {
visibility = [ ":*" ]
sources = [ "fdio.cc" ]
deps = [
"//sdk/lib/fdio",
"//sdk/lib/syslog/cpp",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/fidl",
"//zircon/system/ulib/zircon-internal",
"//zircon/system/ulib/zx",
]
}
source_set("fshost-registry") {
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [
"admin-server.cc",
"deprecated-loader-service.cc",
"fs-manager.cc",
"fshost-boot-args.cc",
"lifecycle.cc",
]
public_deps = [
":inspect",
":launcher",
":metrics",
"//sdk/fidl/fuchsia.boot:fuchsia.boot_llcpp",
"//sdk/fidl/fuchsia.device.manager:fuchsia.device.manager_llcpp",
"//sdk/fidl/fuchsia.feedback:fuchsia.feedback_llcpp",
"//sdk/fidl/fuchsia.fshost:fuchsia.fshost_llcpp",
"//sdk/fidl/fuchsia.hardware.block.partition:fuchsia.hardware.block.partition_llcpp",
"//sdk/fidl/fuchsia.process.lifecycle:fuchsia.process.lifecycle_llcpp",
"//sdk/lib/fit",
"//sdk/lib/vfs/cpp",
"//src/lib/loader_service",
"//src/lib/storage/fs_management",
"//src/lib/storage/vfs/cpp",
"//src/storage/fxfs:fuchsia.fxfs_llcpp",
"//src/storage/memfs",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/fdio-caller",
"//zircon/system/ulib/service:service-llcpp",
"//zircon/system/ulib/zircon-internal",
"//zircon/system/ulib/zx",
]
deps = [
"//sdk/lib/fdio",
"//src/lib/files",
"//src/storage/memfs:memfs-cpp",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/fidl-async:fidl-async-cpp",
"//zircon/system/ulib/zircon-internal",
]
# TODO(fxbug.dev/69585): This target uses raw zx::channel with LLCPP which is deprecated.
# Please migrate to typed channel APIs (fidl::ClientEnd<T>, fidl::ServerEnd<T>).
# See linked bug for details.
configs += [ "//build/cpp:fidl-llcpp-deprecated-raw-channels" ]
}
source_set("inspect") {
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [
"inspect-manager.cc",
"inspect-manager.h",
]
public_deps = [
"//sdk/lib/fdio",
"//sdk/lib/sys/inspect/cpp",
"//src/lib/fsl",
"//src/lib/storage/vfs/cpp",
"//src/storage/memfs",
"//zircon/system/ulib/fbl",
]
}
source_set("metrics") {
sources = [ "metrics.h" ]
}
source_set("metrics_cobalt") {
sources = [
"metrics_cobalt.cc",
"metrics_cobalt.h",
]
public_deps = [
":metrics",
"//src/lib/storage/vfs/cpp/metrics:metrics-cobalt",
"//zircon/system/ulib/async:async-cpp",
"//zircon/system/ulib/cobalt-client",
]
deps = [
"//sdk/lib/syslog/cpp",
"//src/lib/storage/vfs/cpp/metrics:metrics-cobalt",
"//src/lib/storage/vfs/cpp/metrics:metrics-inspect",
"//zircon/system/ulib/cobalt-client",
]
}
source_set("metrics_stub") {
sources = [ "metrics_stub.cc" ]
deps = [ ":metrics" ]
}
source_set("block-watcher") {
configs += [ "//build/config:all_source" ]
sources = [
"block-device-manager.cc",
"block-device.cc",
"block-watcher.cc",
"config.cc",
"copier.cc",
"encrypted-volume.cc",
"filesystem-mounter.cc",
"fshost-fs-provider.cc",
"nand-device.cc",
"pkgfs-launcher.cc",
"pkgfs-loader-service.cc",
"watcher.cc",
]
public_deps = [
":fshost-registry",
":launcher",
"//sdk/fidl/fuchsia.fshost:fuchsia.fshost_llcpp",
"//sdk/fidl/fuchsia.hardware.block.partition:fuchsia.hardware.block.partition_llcpp",
"//sdk/lib/fit",
"//sdk/lib/fit-promise",
"//src/lib/storage/vfs/cpp",
"//src/storage/blobfs",
"//src/storage/fxfs:fuchsia.fxfs_llcpp",
"//src/storage/memfs",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/fdio-caller",
"//zircon/system/ulib/zircon-internal",
"//zircon/system/ulib/zx",
]
deps = [
":headers",
"//sdk/fidl/fuchsia.boot:fuchsia.boot_c",
"//sdk/fidl/fuchsia.boot:fuchsia.boot_llcpp",
"//sdk/fidl/fuchsia.device:fuchsia.device_c",
"//sdk/fidl/fuchsia.device:fuchsia.device_llcpp",
"//sdk/fidl/fuchsia.hardware.block:fuchsia.hardware.block_c",
"//sdk/fidl/fuchsia.hardware.block.encrypted:fuchsia.hardware.block.encrypted_c",
"//sdk/fidl/fuchsia.hardware.block.encrypted:fuchsia.hardware.block.encrypted_llcpp",
"//sdk/fidl/fuchsia.hardware.block.partition:fuchsia.hardware.block.partition_c",
"//sdk/fidl/fuchsia.hardware.block.verified:fuchsia.hardware.block.verified_llcpp",
"//sdk/fidl/fuchsia.hardware.block.volume:fuchsia.hardware.block.volume_llcpp",
"//sdk/fidl/fuchsia.io:fuchsia.io_llcpp",
"//sdk/lib/fdio",
"//sdk/lib/fit",
"//src/devices/block/drivers/block-verity:verified-volume-client",
"//src/lib/digest",
"//src/lib/files",
"//src/lib/loader_service",
"//src/lib/storage/fs_management",
"//src/lib/storage/vfs/cpp",
"//src/lib/uuid:uuid",
"//src/security/zxcrypt:zxcrypt-client",
"//src/storage/gpt",
"//src/storage/minfs",
"//src/sys/pkg/fidl/fuchsia.update.verify:fuchsia.update.verify_llcpp",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/fidl",
"//zircon/system/ulib/fidl-async:fidl-async-cpp",
"//zircon/system/ulib/ramdevice-client",
"//zircon/system/ulib/service:service-llcpp",
"//zircon/system/ulib/trace",
"//zircon/system/ulib/trace-engine",
"//zircon/system/ulib/zircon-internal",
"//zircon/system/ulib/zx",
]
if (extract_minfs_metadata_on_corruption) {
sources += [ "extract-metadata.cc" ]
public_deps += [ "//src/storage/extractor/cpp:disk_extractor" ]
} else {
sources += [ "extract-metadata-noop.cc" ]
}
if (unstable_feature_use_fxfs) {
deps += [ "//src/storage/fxfs" ]
} else if (unstable_feature_use_f2fs) {
deps += [ "//src/storage/bin/f2fs" ]
}
# TODO(fxbug.dev/69585): This target uses raw zx::channel with LLCPP which is deprecated.
# Please migrate to typed channel APIs (fidl::ClientEnd<T>, fidl::ServerEnd<T>).
# See linked bug for details.
configs += [ "//build/cpp:fidl-llcpp-deprecated-raw-channels" ]
# TODO(https://fxbug.dev/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}
executable("fshost") {
if (is_fuchsia) {
configs += [
"//build/unification/config:zircon-migrated",
"//build/config:all_source",
]
}
if (is_fuchsia) {
fdio_config = [ "//build/config/fuchsia:fdio_config" ]
if (configs + fdio_config - fdio_config != configs) {
configs -= fdio_config
}
}
sources = [ "main.cc" ]
deps = [
":block-watcher",
":fshost-registry",
"//sdk/fidl/fuchsia.boot:fuchsia.boot_c",
"//sdk/fidl/fuchsia.boot:fuchsia.boot_llcpp",
"//sdk/fidl/fuchsia.fshost:fuchsia.fshost_c",
"//sdk/fidl/fuchsia.fshost:fuchsia.fshost_llcpp",
"//sdk/fidl/fuchsia.io:fuchsia.io_llcpp",
"//sdk/fidl/fuchsia.ldsvc:fuchsia.ldsvc_c",
"//src/lib/storage/fs_management",
"//third_party/zstd",
"//zircon/system/ulib/fidl-async:fidl-async-cpp",
"//zircon/system/ulib/ramdevice-client",
]
if (unstable_feature_use_fxfs) {
deps += [ "//src/storage/fxfs-crypt" ]
}
if (bootfs_only) {
deps += [ ":metrics_stub" ]
} else {
deps += [ ":metrics_cobalt" ]
}
# TODO(fxbug.dev/69585): This target uses raw zx::channel with LLCPP which is deprecated.
# Please migrate to typed channel APIs (fidl::ClientEnd<T>, fidl::ServerEnd<T>).
# See linked bug for details.
configs += [ "//build/cpp:fidl-llcpp-deprecated-raw-channels" ]
}
test("fshost_test") {
sources = [
"delayed-outdir-test.cc",
"fshost-boot-args-test.cc",
"fshost-test.cc",
]
deps = [
":block-watcher",
":fshost-registry",
":metrics_cobalt",
"//sdk/fidl/fuchsia.boot:fuchsia.boot_llcpp",
"//sdk/fidl/fuchsia.io:fuchsia.io_llcpp",
"//sdk/lib/fit-promise",
"//zircon/system/ulib/cobalt-client",
"//zircon/system/ulib/cobalt-client:in-memory-logger",
"//zircon/system/ulib/fidl-async",
"//zircon/system/ulib/fidl-async:fidl-async-cpp",
"//zircon/system/ulib/mock-boot-arguments",
"//zircon/system/ulib/zxtest",
]
# TODO(fxbug.dev/69585): This target uses raw zx::channel with LLCPP which is deprecated.
# Please migrate to typed channel APIs (fidl::ClientEnd<T>, fidl::ServerEnd<T>).
# See linked bug for details.
configs += [ "//build/cpp:fidl-llcpp-deprecated-raw-channels" ]
}
# Include this target from a product config if you want to allow authoring
# factory partition contents in mutable mode and prevent opening block-verity
# volumes in verified read mode.
generated_resource("allow-authoring-factory") {
outputs = [ "config/allow-authoring-factory" ]
contents = "yes"
# We should never allow authoring factory from a production, user-facing build.
deps = [ "//build/validate:non_production_tag" ]
}
fuchsia_unittest_component("fshost-test") {
deps = [ ":fshost_test" ]
}
# This is a separate test executable because loader_service_test_fixture uses gtest, but other
# tests here use zxtest.
test("fshost_loader_service_test") {
sources = [
"deprecated-loader-service-test.cc",
"pkgfs-loader-service-test.cc",
]
deps = [
":block-watcher",
":fshost-registry",
"//src/lib/loader_service:loader_service_test_fixture",
"//zircon/system/ulib/mock-boot-arguments",
]
}
fuchsia_unittest_component("fshost-loader-service-test") {
manifest = "meta/fshost-loader-service-test.cmx"
deps = [ ":fshost_loader_service_test" ]
}
test("fshost_inspect_test") {
sources = [ "inspect-manager-test.cc" ]
deps = [
":inspect",
"//zircon/system/ulib/async",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/inspect",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_component("fshost-inspect-test") {
deps = [ ":fshost_inspect_test" ]
}
test("fshost_metrics_test") {
sources = [ "metrics-test.cc" ]
deps = [
":metrics_cobalt",
"//sdk/fidl/fuchsia.boot:fuchsia.boot_llcpp",
"//sdk/lib/fdio",
"//src/lib/storage/vfs/cpp/metrics:metrics-cobalt",
"//src/lib/storage/vfs/cpp/metrics:metrics-inspect",
"//zircon/system/ulib/async-testing",
"//zircon/system/ulib/cobalt-client:in-memory-logger",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_component("fshost-metrics-test") {
deps = [ ":fshost_metrics_test" ]
}
test("fshost_integration_test") {
sources = [
"block-device-manager-test.cc",
"block-device-test.cc",
"block-watcher-test.cc",
"filesystem-mounter-test.cc",
"fshost-exposed-dir-test.cc",
"fshost_integration_test.cc",
"fshost_integration_test.h",
"mock-block-device.h",
"recovery-test.cc",
]
deps = [
":block-watcher",
":headers",
":metrics_cobalt",
"//sdk/fidl/fuchsia.boot:fuchsia.boot_llcpp",
"//sdk/fidl/fuchsia.component",
"//sdk/fidl/fuchsia.component.decl",
"//sdk/fidl/fuchsia.device:fuchsia.device_llcpp",
"//sdk/fidl/fuchsia.hardware.block.volume:fuchsia.hardware.block.volume_llcpp",
"//src/developer/forensics/testing/fakes:fuchsia.feedback.testing_llcpp",
"//src/lib/files",
"//src/lib/fxl/test:gtest_main",
"//src/lib/storage/fs_management",
"//src/lib/storage/vfs/cpp/metrics:metrics-cobalt",
"//src/lib/testing/predicates",
"//src/storage/blobfs",
"//src/storage/minfs",
"//src/storage/testing:storage_driver_test_support",
"//src/sys/pkg/fidl/fuchsia.update.verify:fuchsia.update.verify_llcpp",
"//third_party/googletest:gmock",
"//zircon/system/ulib/cobalt-client:in-memory-logger",
"//zircon/system/ulib/fidl-async",
"//zircon/system/ulib/ramdevice-client",
"//zircon/system/ulib/service:service-llcpp",
]
# TODO(fxbug.dev/69585): This target uses raw zx::channel with LLCPP which is deprecated.
# Please migrate to typed channel APIs (fidl::ClientEnd<T>, fidl::ServerEnd<T>).
# See linked bug for details.
configs += [ "//build/cpp:fidl-llcpp-deprecated-raw-channels" ]
}
cmc_merge("test-fshost.cml") {
sources = [
"meta/base_fshost.cml",
"meta/core_fshost.cml",
]
if (unstable_feature_use_fxfs) {
sources += [ "meta/fxfs_fshost.cml" ]
}
}
# This is a test version of fshost, not a component with fshost tests.
fuchsia_component("test-fshost") {
testonly = true
manifest_outputs = get_target_outputs(":test-fshost.cml")
manifest = manifest_outputs[0]
deps = [
":fshost",
":test-fshost.cml",
"//src/security/policy/zxcrypt:null",
]
}
test("copier_test") {
sources = [
"copier.cc",
"copier_test.cc",
]
deps = [
"//sdk/lib/syslog/cpp:cpp-macros",
"//src/lib/files",
"//src/lib/fxl/test:gtest_main",
"//src/sys/test_runners:tmp_storage",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/zxc",
]
}
fuchsia_unittest_component("copier-test") {
deps = [ ":copier_test" ]
}
fuchsia_component("fshost-integration-test") {
testonly = true
manifest = "meta/fshost_integration_test.cml"
deps = [
":fshost_integration_test",
":integration_test_config",
"//src/storage/testing:storage_driver_test_realm",
]
}
fuchsia_test_package("fshost-tests") {
test_specs = {
log_settings = {
max_severity = "ERROR"
}
}
test_components = [
":fshost-integration-test",
":fshost-test",
":fshost-inspect-test",
":fshost-metrics-test",
":fshost-loader-service-test",
":copier-test",
]
deps = [
":test-fshost",
"//src/developer/forensics/testing/fakes:fake_crash_reporter_v2",
"//src/storage/bin/blobfs",
"//src/storage/bin/minfs",
"//src/storage/blobfs:decompressor-sandbox",
]
}
cmc_merge("fshost.cml") {
sources = [
"meta/base_fshost.cml",
"meta/real_fshost.cml",
]
if (!bootfs_only) {
sources += [ "meta/core_fshost.cml" ]
}
if (unstable_feature_use_fxfs) {
sources += [ "meta/fxfs_fshost.cml" ]
}
}
component_manifest_resources("meta") {
sources = get_target_outputs(":fshost.cml")
deps = [ ":fshost.cml" ]
}
group("bootfs") {
deps = [
":fshost",
":meta",
]
}
# Generates an fshost config file that will appear in config/fshost. If no configuration file is
# present (i.e. there's no dependency on a target below), a default config is used (see
# block-device-manager.cc).
#
# Some of the configuration settings are build args, and some are parameters passed in to the
# template by the invoker. A few allow overriding by the invoker but fall back to the global build
# arg.
template("fshost_config") {
generated_resource(target_name) {
contents = [ "default" ]
deps = []
if (defined(invoker.no_minfs_zxcrypt) && invoker.no_minfs_zxcrypt) {
contents += [ "no-zxcrypt" ]
deps += [ "//build/validate:non_production_tag" ]
}
if (defined(invoker.minfs_ramdisk) && invoker.minfs_ramdisk) {
contents += [
"fvm-ramdisk",
"zxcrypt-non-ramdisk",
]
}
if (defined(invoker.gpt_all) && invoker.gpt_all) {
contents += [ "gpt-all" ]
deps += [ "//build/validate:non_production_tag" ]
}
if (blobfs_maximum_runtime_bytes != "") {
contents += [ "blobfs-max-bytes=$blobfs_maximum_runtime_bytes" ]
}
if (defined(invoker.minfs_maximum_runtime_bytes_override)) {
# This can be overridden by the invoker but defaults to the file one if undefined.
contents +=
[ "minfs-max-bytes=${invoker.minfs_maximum_runtime_bytes_override}" ]
} else if (minfs_maximum_runtime_bytes != "") {
contents += [ "minfs-max-bytes=$minfs_maximum_runtime_bytes" ]
}
if (!format_minfs_on_corruption) {
contents += [ "-format-minfs-on-corruption" ]
}
if (defined(invoker.use_default_loader) && invoker.use_default_loader) {
contents += [ "use-default-loader" ]
}
if (!defined(invoker.sandbox_decompression) ||
!invoker.sandbox_decompression) {
contents += [ "sandbox-decompression" ]
}
if (defined(invoker.apply_limits_to_ramdisk) &&
invoker.apply_limits_to_ramdisk) {
contents += [ "apply-limits-to-ramdisk" ]
}
if (invoker.unstable_feature_use_fxfs) {
contents += [
"data-filesystem-binary-path=/pkg/bin/fxfs",
"data-filesystem-no-directory-admin",
"data-filesystem-uses-crypt",
]
} else if (invoker.unstable_feature_use_f2fs) {
contents += [
"data-filesystem-binary-path=/pkg/bin/f2fs",
"data-filesystem-no-directory-admin",
]
}
if (defined(invoker.check_filesystems) && invoker.check_filesystems) {
contents += [ "check-filesystems" ]
}
if (invoker.allow_legacy_data_partition_names) {
contents += [ "allow-legacy-data-partition-names" ]
}
if (fshost_watch_for_nand) {
contents += [ "nand" ]
}
output_conversion = "list lines"
outputs = [ "config/fshost" ]
}
}
fshost_config("minfs_ramdisk") {
minfs_ramdisk = true
}
fshost_config("no_minfs_zxcrypt") {
no_minfs_zxcrypt = true
}
# A configuration that allows access to multiple devices with GUID partition schemes; the default
# will only attach a driver to the first device that appears to have a GUID partition scheme.
fshost_config("gpt_all") {
gpt_all = true
}
# Writes default configuration plus any changes to global variables.
fshost_config("default_config") {
sandbox_decompression = false
}
fshost_config("integration_test_config") {
# Some of the tests require us to be able to match against multiple GPT devices.
gpt_all = true
use_default_loader = true
# The test BlockDeviceManagerIntegration.MaxSize verifies that the minfs "max runtime bytes" gets
# applied correctly. It checks that the max size in FVM is set to this value. The
# "apply_limits_to_ramdisk" flag is required to apply the minfs limit even to a ramdisk which is
# used in tests (normally the limits apply only to physical devices). This number applies to all
# tests in the fshost integration test, so all minfs partitions created must be smaller than this
# value, but all disks should be larger than this value.
minfs_maximum_runtime_bytes_override = 117440512
apply_limits_to_ramdisk = true
check_filesystems = true
}