| // Copyright 2016 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. |
| |
| #include "fs-manager.h" |
| |
| #include <fcntl.h> |
| #include <fidl/fuchsia.feedback/cpp/wire.h> |
| #include <fidl/fuchsia.fshost/cpp/wire.h> |
| #include <lib/async-loop/cpp/loop.h> |
| #include <lib/async-loop/default.h> |
| #include <lib/async/cpp/wait.h> |
| #include <lib/fdio/directory.h> |
| #include <lib/fdio/io.h> |
| #include <lib/inspect/service/cpp/service.h> |
| #include <lib/service/llcpp/service.h> |
| #include <lib/syslog/cpp/macros.h> |
| #include <stdio.h> |
| #include <stdlib.h> |
| #include <string.h> |
| #include <sys/stat.h> |
| #include <threads.h> |
| #include <zircon/errors.h> |
| #include <zircon/processargs.h> |
| #include <zircon/status.h> |
| #include <zircon/syscalls.h> |
| |
| #include <iterator> |
| #include <memory> |
| #include <string_view> |
| #include <utility> |
| |
| #include <fbl/algorithm.h> |
| #include <fbl/alloc_checker.h> |
| #include <fbl/auto_lock.h> |
| #include <fbl/ref_ptr.h> |
| |
| #include "admin-server.h" |
| #include "block-watcher.h" |
| #include "fidl/fuchsia.ldsvc/cpp/wire.h" |
| #include "fshost-boot-args.h" |
| #include "lib/async/cpp/task.h" |
| #include "lifecycle.h" |
| #include "metrics.h" |
| #include "src/lib/storage/vfs/cpp/remote_dir.h" |
| #include "src/lib/storage/vfs/cpp/vfs.h" |
| #include "src/lib/storage/vfs/cpp/vfs_types.h" |
| |
| #define ZXDEBUG 0 |
| |
| namespace fshost { |
| |
| namespace { |
| |
| const char* ReportReasonStr(const FsManager::ReportReason& reason) { |
| switch (reason) { |
| case FsManager::ReportReason::kMinfsCorrupted: |
| return "fuchsia-minfs-corruption"; |
| case FsManager::ReportReason::kMinfsNotUpgradeable: |
| return "fuchsia-minfs-not-upgraded"; |
| } |
| } |
| |
| zx::status<uint64_t> GetFsId(fidl::UnownedClientEnd<fuchsia_io::Directory> root) { |
| auto result = fidl::WireCall(root)->QueryFilesystem(); |
| if (!result.ok()) |
| return zx::error(result.status()); |
| if (result->s != ZX_OK) |
| return zx::error(result->s); |
| return zx::ok(result->info->fs_id); |
| } |
| |
| } // namespace |
| |
| FsManager::MountedFilesystem::~MountedFilesystem() { |
| node_->DetachRemote(); |
| if (auto status = fs_management::Shutdown(export_root_); status.is_error()) |
| FX_LOGS(WARNING) << "Unmount error: " << status.status_string(); |
| } |
| |
| FsManager::FsManager(std::shared_ptr<FshostBootArgs> boot_args, |
| std::unique_ptr<FsHostMetrics> metrics) |
| : global_loop_(new async::Loop(&kAsyncLoopConfigNoAttachToCurrentThread)), |
| outgoing_vfs_(fs::ManagedVfs(global_loop_->dispatcher())), |
| metrics_(std::move(metrics)), |
| boot_args_(std::move(boot_args)) { |
| ZX_ASSERT(global_root_ == nullptr); |
| } |
| |
| // In the event that we haven't been explicitly signalled, tear ourself down. |
| FsManager::~FsManager() { |
| if (!shutdown_called_) { |
| Shutdown([](zx_status_t status) { |
| if (status != ZX_OK) { |
| FX_LOGS(ERROR) << "filesystem shutdown failed: " << zx_status_get_string(status); |
| return; |
| } |
| FX_LOGS(INFO) << "filesystem shutdown complete"; |
| }); |
| } |
| sync_completion_wait(&shutdown_, ZX_TIME_INFINITE); |
| } |
| |
| zx_status_t FsManager::SetupLifecycleServer( |
| fidl::ServerEnd<fuchsia_process_lifecycle::Lifecycle> lifecycle_request) { |
| return LifecycleServer::Create(global_loop_->dispatcher(), this, std::move(lifecycle_request)); |
| } |
| |
| // Sets up the outgoing directory, and runs it on the PA_DIRECTORY_REQUEST |
| // handle if it exists. See fshost.cml for a list of what's in the directory. |
| zx_status_t FsManager::SetupOutgoingDirectory(fidl::ServerEnd<fuchsia_io::Directory> dir_request, |
| BlockWatcher& watcher) { |
| auto outgoing_dir = fbl::MakeRefCounted<fs::PseudoDir>(); |
| |
| // Add admin services to the vfs |
| svc_dir_ = fbl::MakeRefCounted<fs::PseudoDir>(); |
| |
| svc_dir_->AddEntry(fidl::DiscoverableProtocolName<fuchsia_fshost::Admin>, |
| AdminServer::Create(this, global_loop_->dispatcher())); |
| |
| svc_dir_->AddEntry(fidl::DiscoverableProtocolName<fuchsia_fshost::BlockWatcher>, |
| BlockWatcherServer::Create(global_loop_->dispatcher(), watcher)); |
| |
| outgoing_dir->AddEntry("svc", svc_dir_); |
| |
| // Add /fs to the outgoing vfs |
| { |
| zx::status endpoints = fidl::CreateEndpoints<fuchsia_io::Directory>(); |
| if (endpoints.is_error()) { |
| FX_PLOGS(ERROR, endpoints.status_value()) << "failed to create channel"; |
| return endpoints.status_value(); |
| } |
| zx_status_t status = this->ServeRoot(std::move(endpoints->server)); |
| if (status != ZX_OK) { |
| FX_PLOGS(ERROR, status) << "Cannot serve root filesystem"; |
| return status; |
| } |
| status = outgoing_dir->AddEntry( |
| "fs", fbl::MakeRefCounted<fs::RemoteDir>(std::move(endpoints->client))); |
| if (status != ZX_OK) { |
| FX_PLOGS(ERROR, status) << "Cannot add root filesystem entry"; |
| return status; |
| } |
| } |
| |
| // TODO(fxbug.dev/39588): delete this |
| // Add the delayed directory |
| { |
| zx::status endpoints = fidl::CreateEndpoints<fuchsia_io::Directory>(); |
| if (endpoints.is_error()) { |
| FX_PLOGS(ERROR, endpoints.status_value()) << "failed to create channel"; |
| return endpoints.status_value(); |
| } |
| zx_status_t status = this->ServeRoot(std::move(endpoints->server)); |
| if (status != ZX_OK) { |
| FX_PLOGS(ERROR, status) << "Cannot serve root filesystem"; |
| return status; |
| } |
| status = |
| outgoing_dir->AddEntry("delayed", delayed_outdir_.Initialize(std::move(endpoints->client))); |
| if (status != ZX_OK) { |
| FX_PLOGS(ERROR, status) << "Cannot add root filesystem entry"; |
| return status; |
| } |
| } |
| |
| // Add the diagnostics directory |
| diagnostics_dir_ = inspect_.Initialize(global_loop_->dispatcher()); |
| outgoing_dir->AddEntry("diagnostics", diagnostics_dir_); |
| |
| // Run the outgoing directory |
| outgoing_vfs_.ServeDirectory(outgoing_dir, std::move(dir_request)); |
| return ZX_OK; |
| } |
| |
| zx_status_t FsManager::Initialize( |
| fidl::ServerEnd<fuchsia_io::Directory> dir_request, |
| fidl::ServerEnd<fuchsia_process_lifecycle::Lifecycle> lifecycle_request, |
| BlockWatcher& watcher) { |
| global_loop_->StartThread("root-dispatcher"); |
| |
| zx_status_t status = |
| memfs::Memfs::Create(global_loop_->dispatcher(), "<root>", &root_vfs_, &global_root_); |
| if (status != ZX_OK) { |
| return status; |
| } |
| |
| fbl::RefPtr<fs::Vnode> vn; |
| if ((status = global_root_->Create("boot", S_IFDIR, &vn)) != ZX_OK) { |
| return status; |
| } |
| if ((status = global_root_->Create("tmp", S_IFDIR, &vn)) != ZX_OK) { |
| return status; |
| } |
| for (const auto& point : kAllMountPoints) { |
| auto open_result = root_vfs_->Open(global_root_, std::string_view(MountPointPath(point)), |
| fs::VnodeConnectionOptions::ReadWrite().set_create(), |
| fs::Rights::ReadWrite(), S_IFDIR); |
| if (open_result.is_error()) { |
| return open_result.error(); |
| } |
| |
| ZX_ASSERT(open_result.is_ok()); |
| mount_nodes_[point].root_directory = std::move(open_result.ok().vnode); |
| } |
| |
| auto open_result = |
| root_vfs_->Open(global_root_, std::string_view("/data"), |
| fs::VnodeConnectionOptions::ReadOnly(), fs::Rights::ReadOnly(), S_IFDIR); |
| if (open_result.is_ok()) { |
| inspect_.ServeStats("data", open_result.ok().vnode); |
| } else { |
| FX_LOGS(ERROR) << "failed to serve /data stats"; |
| } |
| |
| if (dir_request.is_valid()) { |
| status = SetupOutgoingDirectory(std::move(dir_request), watcher); |
| if (status != ZX_OK) { |
| return status; |
| } |
| } |
| if (lifecycle_request.is_valid()) { |
| status = SetupLifecycleServer(std::move(lifecycle_request)); |
| if (status != ZX_OK) { |
| return status; |
| } |
| } |
| return ZX_OK; |
| } |
| |
| void FsManager::FlushMetrics() { mutable_metrics()->Flush(); } |
| |
| zx::status<> FsManager::InstallFs(MountPoint point, std::string_view device_path, |
| fidl::ClientEnd<fuchsia_io::Directory> export_root_directory, |
| fidl::ClientEnd<fuchsia_io::Directory> root_directory) { |
| // Hold the shutdown lock for the entire duration of the install to avoid racing with shutdown on |
| // adding/removing the remote mount. |
| std::lock_guard guard(lock_); |
| if (shutdown_called_) { |
| FX_LOGS(INFO) << "Not installing " << MountPointPath(point) << " after shutdown"; |
| return zx::error(ZX_ERR_BAD_STATE); |
| } |
| auto node = mount_nodes_.find(point); |
| if (node == mount_nodes_.end()) { |
| // The map should have been fully initialized. |
| return zx::error(ZX_ERR_BAD_STATE); |
| } |
| node->second.export_root = std::move(export_root_directory); |
| if (!device_path.empty()) { |
| device_paths_[GetFsId(fidl::UnownedClientEnd<fuchsia_io::Directory>(root_directory.borrow())) |
| .value_or(0)] = device_path; |
| } |
| if (zx_status_t status = |
| root_vfs_->InstallRemote(node->second.root_directory, std::move(root_directory)); |
| status != ZX_OK) { |
| return zx::error(status); |
| } |
| return zx::ok(); |
| } |
| |
| zx_status_t FsManager::ServeRoot(fidl::ServerEnd<fuchsia_io::Directory> server) { |
| fs::Rights rights; |
| rights.read = true; |
| rights.write = true; |
| rights.execute = true; |
| return root_vfs_->ServeDirectory(global_root_, std::move(server), rights); |
| } |
| |
| void FsManager::Shutdown(fit::function<void(zx_status_t)> callback) { |
| std::lock_guard guard(lock_); |
| if (shutdown_called_) { |
| FX_LOGS(ERROR) << "shutdown called more than once"; |
| callback(ZX_ERR_INTERNAL); |
| return; |
| } |
| shutdown_called_ = true; |
| |
| FX_LOGS(INFO) << "filesystem shutdown initiated"; |
| // Shutting down fshost involves sending asynchronous shutdown signals to several different |
| // systems in order with continuation passing. |
| // 0. Before fshost is told to shut down, almost everything that is running out of the |
| // filesystems is shut down by component manager. Also before this, blobfs is told to shut |
| // down by component manager. Blobfs, as part of it's shutdown, notifies driver manager that |
| // drivers running out of /system should be shut down. |
| // 1. Shut down the outgoing vfs. This hosts the fshost services. The outgoing vfs also has |
| // handles to the filesystems, but it doesn't own them so it doesn't shut them down. |
| // 2. Shut down the root vfs. This hosts the filesystems, and recursively shuts all of them down. |
| // If at any point we hit an error, we log loudly, but continue with the shutdown procedure. |
| std::vector<std::pair<MountPoint, fidl::ClientEnd<fuchsia_io::Directory>>> |
| filesystems_to_shut_down; |
| for (auto& [point, node] : mount_nodes_) { |
| if (node.export_root) |
| filesystems_to_shut_down.emplace_back(point, std::move(node.export_root)); |
| } |
| |
| // fs_management::Shutdown is synchronous, so we spawn a thread to shut down |
| // the mounted filesystems. |
| std::thread shutdown_thread([this, callback = std::move(callback), |
| filesystems_to_shutdown = |
| std::move(filesystems_to_shut_down)]() mutable { |
| // Ensure that we are ready for shutdown. |
| sync_completion_wait(&ready_for_shutdown_, ZX_TIME_INFINITE); |
| auto merge_status = [first_status = ZX_OK](zx_status_t status) mutable { |
| if (first_status == ZX_OK) |
| first_status = status; |
| return first_status; |
| }; |
| |
| for (auto& [point, fs] : filesystems_to_shutdown) { |
| FX_LOGS(INFO) << "Shutting down " << MountPointPath(point); |
| if (auto result = fs_management::Shutdown({fs.borrow()}); result.is_error()) { |
| FX_LOGS(WARNING) << "Failed to shut down " << MountPointPath(point) << ": " |
| << result.status_string(); |
| merge_status(result.error_value()); |
| } |
| } |
| |
| // Continue on the async loop... |
| zx_status_t status = async::PostTask( |
| global_loop_->dispatcher(), |
| [this, callback = std::move(callback), merge_status = std::move(merge_status)]() mutable { |
| outgoing_vfs_.Shutdown([this, callback = std::move(callback), |
| merge_status = |
| std::move(merge_status)](zx_status_t status) mutable { |
| if (status != ZX_OK) { |
| FX_LOGS(ERROR) << "outgoing_vfs shutdown failed: " << zx_status_get_string(status); |
| merge_status(status); |
| } |
| root_vfs_->Shutdown( |
| [this, callback = std::move(callback), |
| merge_status = std::move(merge_status)](zx_status_t status) mutable { |
| if (status != ZX_OK) { |
| FX_LOGS(ERROR) << "root_vfs shutdown failed: " << zx_status_get_string(status); |
| merge_status(status); |
| } |
| callback(merge_status(ZX_OK)); |
| sync_completion_signal(&shutdown_); |
| // after this signal, FsManager can be destroyed. |
| }); |
| }); |
| }); |
| if (status != ZX_OK) { |
| FX_LOGS(ERROR) << "Unable to finish shut down: " << zx_status_get_string(status); |
| // We can't call the callback here because we moved it, but we don't expect posting the task |
| // to fail, so let's not worry about it. |
| } |
| }); |
| |
| shutdown_thread.detach(); |
| } |
| |
| bool FsManager::IsShutdown() { return sync_completion_signaled(&shutdown_); } |
| |
| void FsManager::WaitForShutdown() { sync_completion_wait(&shutdown_, ZX_TIME_INFINITE); } |
| |
| void FsManager::ReadyForShutdown() { sync_completion_signal(&ready_for_shutdown_); } |
| |
| const char* FsManager::MountPointPath(FsManager::MountPoint point) { |
| switch (point) { |
| case MountPoint::kUnknown: |
| return ""; |
| case MountPoint::kBin: |
| return "/bin"; |
| case MountPoint::kData: |
| return "/data"; |
| case MountPoint::kVolume: |
| return "/volume"; |
| case MountPoint::kSystem: |
| return "/system"; |
| case MountPoint::kInstall: |
| return "/install"; |
| case MountPoint::kPkgfs: |
| return "/pkgfs"; |
| case MountPoint::kFactory: |
| return "/factory"; |
| case MountPoint::kDurable: |
| return "/durable"; |
| case MountPoint::kMnt: |
| return "/mnt"; |
| } |
| } |
| |
| zx_status_t FsManager::ForwardFsDiagnosticsDirectory(MountPoint point, |
| std::string_view diagnostics_dir_name) { |
| // The diagnostics directory may not be initialized in tests. |
| if (diagnostics_dir_ == nullptr) { |
| return ZX_ERR_INTERNAL; |
| } |
| if (point == MountPoint::kUnknown) { |
| return ZX_ERR_INVALID_ARGS; |
| } |
| if (!mount_nodes_[point].export_root) { |
| FX_LOGS(ERROR) << "Can't forward diagnostics dir for " << MountPointPath(point) |
| << ", export root directory was not set"; |
| return ZX_ERR_BAD_STATE; |
| } |
| |
| auto inspect_node = fbl::MakeRefCounted<fs::Service>([this, point](zx::channel request) { |
| std::string name = std::string("diagnostics/") + fuchsia::inspect::Tree::Name_; |
| return fdio_service_connect_at(mount_nodes_[point].export_root.channel().get(), name.c_str(), |
| request.release()); |
| }); |
| auto fs_diagnostics_dir = fbl::MakeRefCounted<fs::PseudoDir>(); |
| zx_status_t status = fs_diagnostics_dir->AddEntry(fuchsia::inspect::Tree::Name_, inspect_node); |
| if (status != ZX_OK) { |
| return status; |
| } |
| return diagnostics_dir_->AddEntry(diagnostics_dir_name, fs_diagnostics_dir); |
| } |
| |
| zx_status_t FsManager::ForwardFsService(MountPoint point, const char* service_name) { |
| // The outgoing service directory may not be initialized in tests. |
| if (svc_dir_ == nullptr) { |
| return ZX_ERR_INTERNAL; |
| } |
| if (point == MountPoint::kUnknown) { |
| return ZX_ERR_INVALID_ARGS; |
| } |
| if (!mount_nodes_[point].export_root) { |
| FX_LOGS(ERROR) << "Can't forward service for " << MountPointPath(point) |
| << ", export root directory was not set"; |
| return ZX_ERR_BAD_STATE; |
| } |
| |
| auto service_node = |
| fbl::MakeRefCounted<fs::Service>([this, point, service_name](zx::channel request) { |
| std::string name = std::string("svc/") + service_name; |
| return fdio_service_connect_at(mount_nodes_[point].export_root.channel().get(), |
| name.c_str(), request.release()); |
| }); |
| return svc_dir_->AddEntry(service_name, std::move(service_node)); |
| } |
| |
| void FsManager::FileReport(ReportReason reason) { |
| if (!file_crash_report_) { |
| FX_LOGS(INFO) << "Not filing a crash report for " << ReportReasonStr(reason) << " (disabled)"; |
| return; |
| } |
| FX_LOGS(INFO) << "Filing a crash report for " << ReportReasonStr(reason); |
| // This thread accesses no state in the SyntheticCrashReporter, so is thread-safe even if the |
| // reporter is destroyed. |
| std::thread t([reason]() { |
| auto client_end = service::Connect<fuchsia_feedback::CrashReporter>(); |
| if (client_end.is_error()) { |
| FX_LOGS(WARNING) << "Unable to connect to crash reporting service: " |
| << client_end.status_string(); |
| return; |
| } |
| auto client = fidl::BindSyncClient(std::move(*client_end)); |
| |
| fidl::Arena allocator; |
| fuchsia_feedback::wire::CrashReport report(allocator); |
| report.set_program_name(allocator, allocator, "minfs"); |
| report.set_crash_signature(allocator, allocator, ReportReasonStr(reason)); |
| report.set_is_fatal(false); |
| |
| auto res = client->File(report); |
| if (!res.ok()) { |
| FX_LOGS(WARNING) << "Unable to send crash report (fidl error): " << res.status_string(); |
| } |
| if (res->result.is_err()) { |
| FX_LOGS(WARNING) << "Failed to file crash report: " |
| << zx_status_get_string(res->result.err()); |
| } else { |
| FX_LOGS(INFO) << "Crash report successfully filed"; |
| } |
| }); |
| t.detach(); |
| } |
| |
| zx_status_t FsManager::AttachMount(std::string_view device_path, |
| fidl::ClientEnd<fuchsia_io::Directory> export_root, |
| std::string_view name) { |
| auto root_or = fs_management::FsRootHandle(export_root); |
| if (root_or.is_error()) { |
| FX_LOGS(WARNING) << "Failed to get root: " << root_or.status_string(); |
| return root_or.error_value(); |
| } |
| |
| const auto& node = mount_nodes_[MountPoint::kMnt]; |
| fbl::RefPtr<fs::Vnode> vnode; |
| if (zx_status_t status = node.root_directory->Create(name, S_IFDIR, &vnode); status != ZX_OK) { |
| [[maybe_unused]] auto result = fs_management::Shutdown(export_root); |
| return status; |
| } |
| |
| uint64_t fs_id = GetFsId(*root_or).value_or(0); |
| vnode->SetRemote(fidl::ClientEnd<fuchsia_io::Directory>(root_or->TakeChannel())); |
| mounted_filesystems_.emplace( |
| std::make_unique<MountedFilesystem>(name, std::move(export_root), std::move(vnode), fs_id)); |
| if (!device_path.empty()) |
| device_paths_.emplace(fs_id, device_path); |
| return ZX_OK; |
| } |
| |
| zx_status_t FsManager::DetachMount(std::string_view name) { |
| if (auto iter = mounted_filesystems_.find(name); iter == mounted_filesystems_.end()) { |
| return ZX_ERR_NOT_FOUND; |
| } else { |
| device_paths_.erase((*iter)->fs_id()); |
| mounted_filesystems_.erase(iter); |
| } |
| return mount_nodes_[MountPoint::kMnt].root_directory->Unlink(name, false); |
| } |
| |
| zx::status<std::string> FsManager::GetDevicePath(uint64_t fs_id) const { |
| auto iter = device_paths_.find(fs_id); |
| if (iter == device_paths_.end()) |
| return zx::error(ZX_ERR_NOT_FOUND); |
| else |
| return zx::ok(iter->second); |
| } |
| |
| } // namespace fshost |