2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2020-01-24 16:45:29 +03:00
|
|
|
* Copyright (c) 2019-2020, Sergey Bugaev <bugaevc@serenityos.org>
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2019-08-17 12:23:22 +03:00
|
|
|
#include <AK/JsonArray.h>
|
|
|
|
#include <AK/JsonObject.h>
|
|
|
|
#include <AK/JsonValue.h>
|
2020-02-06 15:04:03 +01:00
|
|
|
#include <LibCore/ArgsParser.h>
|
|
|
|
#include <LibCore/File.h>
|
2022-01-21 21:22:16 +01:00
|
|
|
#include <LibCore/System.h>
|
|
|
|
#include <LibMain/Main.h>
|
2020-04-06 11:55:08 +03:00
|
|
|
#include <fcntl.h>
|
2019-08-02 23:18:47 +10:00
|
|
|
#include <stdio.h>
|
2020-03-08 12:05:14 +01:00
|
|
|
#include <string.h>
|
2019-08-02 23:18:47 +10:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2021-11-11 00:55:02 +01:00
|
|
|
static int parse_options(StringView options)
|
2020-01-11 18:51:24 +03:00
|
|
|
{
|
|
|
|
int flags = 0;
|
|
|
|
Vector<StringView> parts = options.split_view(',');
|
|
|
|
for (auto& part : parts) {
|
|
|
|
if (part == "defaults")
|
|
|
|
continue;
|
|
|
|
else if (part == "nodev")
|
|
|
|
flags |= MS_NODEV;
|
|
|
|
else if (part == "noexec")
|
|
|
|
flags |= MS_NOEXEC;
|
|
|
|
else if (part == "nosuid")
|
|
|
|
flags |= MS_NOSUID;
|
|
|
|
else if (part == "bind")
|
|
|
|
flags |= MS_BIND;
|
2020-05-28 18:03:58 +03:00
|
|
|
else if (part == "ro")
|
|
|
|
flags |= MS_RDONLY;
|
2020-05-28 21:12:13 +03:00
|
|
|
else if (part == "remount")
|
|
|
|
flags |= MS_REMOUNT;
|
2020-01-11 18:51:24 +03:00
|
|
|
else
|
2021-05-31 15:43:25 +01:00
|
|
|
warnln("Ignoring invalid option: {}", part);
|
2020-01-11 18:51:24 +03:00
|
|
|
}
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
2022-01-30 19:37:08 +01:00
|
|
|
static bool is_source_none(StringView source)
|
2020-04-06 11:55:08 +03:00
|
|
|
{
|
2022-01-30 19:37:08 +01:00
|
|
|
return source == "none"sv;
|
2020-04-06 11:55:08 +03:00
|
|
|
}
|
|
|
|
|
2022-01-30 19:37:08 +01:00
|
|
|
static int get_source_fd(StringView source)
|
2020-04-06 11:55:08 +03:00
|
|
|
{
|
|
|
|
if (is_source_none(source))
|
|
|
|
return -1;
|
2022-01-21 21:22:16 +01:00
|
|
|
auto fd_or_error = Core::System::open(source, O_RDWR);
|
|
|
|
if (fd_or_error.is_error())
|
|
|
|
fd_or_error = Core::System::open(source, O_RDONLY);
|
|
|
|
if (fd_or_error.is_error()) {
|
2020-04-06 11:55:08 +03:00
|
|
|
int saved_errno = errno;
|
2021-01-16 12:00:33 +01:00
|
|
|
auto message = String::formatted("Failed to open: {}\n", source);
|
2020-04-06 11:55:08 +03:00
|
|
|
errno = saved_errno;
|
|
|
|
perror(message.characters());
|
|
|
|
}
|
2022-01-21 21:22:16 +01:00
|
|
|
return fd_or_error.release_value();
|
2020-04-06 11:55:08 +03:00
|
|
|
}
|
|
|
|
|
2022-01-21 21:22:16 +01:00
|
|
|
static ErrorOr<void> mount_all()
|
2019-08-17 12:23:22 +03:00
|
|
|
{
|
|
|
|
// Mount all filesystems listed in /etc/fstab.
|
2021-01-09 15:09:40 +01:00
|
|
|
dbgln("Mounting all filesystems...");
|
2019-08-17 12:23:22 +03:00
|
|
|
|
2022-01-21 21:22:16 +01:00
|
|
|
auto fstab = TRY(Core::File::open("/etc/fstab", Core::OpenMode::ReadOnly));
|
2019-08-17 12:23:22 +03:00
|
|
|
|
|
|
|
bool all_ok = true;
|
2019-09-21 20:50:06 +02:00
|
|
|
while (fstab->can_read_line()) {
|
2020-12-13 11:44:53 +01:00
|
|
|
auto line = fstab->read_line();
|
2019-08-17 12:23:22 +03:00
|
|
|
|
2020-01-12 19:29:17 +03:00
|
|
|
// Skip comments and blank lines.
|
|
|
|
if (line.is_empty() || line.starts_with("#"))
|
|
|
|
continue;
|
|
|
|
|
2019-08-17 12:23:22 +03:00
|
|
|
Vector<String> parts = line.split('\t');
|
|
|
|
if (parts.size() < 3) {
|
2021-05-31 15:43:25 +01:00
|
|
|
warnln("Invalid fstab entry: {}", line);
|
2019-08-17 12:23:22 +03:00
|
|
|
all_ok = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-01-30 19:37:08 +01:00
|
|
|
auto mountpoint = parts[1];
|
|
|
|
auto fstype = parts[2];
|
2020-01-11 18:51:24 +03:00
|
|
|
int flags = parts.size() >= 4 ? parse_options(parts[3]) : 0;
|
2019-08-17 12:23:22 +03:00
|
|
|
|
2022-01-30 19:37:08 +01:00
|
|
|
if (mountpoint == "/") {
|
2021-01-09 18:51:44 +01:00
|
|
|
dbgln("Skipping mounting root");
|
2019-08-17 12:23:22 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-01-30 19:37:08 +01:00
|
|
|
auto filename = parts[0];
|
2020-04-06 11:55:08 +03:00
|
|
|
|
|
|
|
int fd = get_source_fd(filename);
|
|
|
|
|
2021-01-17 20:28:43 +01:00
|
|
|
dbgln("Mounting {} ({}) on {}", filename, fstype, mountpoint);
|
|
|
|
|
2022-01-21 21:22:16 +01:00
|
|
|
auto error_or_void = Core::System::mount(fd, mountpoint, fstype, flags);
|
|
|
|
if (error_or_void.is_error()) {
|
2021-05-31 15:43:25 +01:00
|
|
|
warnln("Failed to mount {} (FD: {}) ({}) on {}: {}", filename, fd, fstype, mountpoint, strerror(errno));
|
2019-08-17 12:23:22 +03:00
|
|
|
all_ok = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-21 21:22:16 +01:00
|
|
|
if (all_ok)
|
|
|
|
return {};
|
|
|
|
else
|
|
|
|
return Error::from_string_literal("One or more errors occurred. Please verify earlier output.");
|
2019-08-17 12:23:22 +03:00
|
|
|
}
|
|
|
|
|
2022-01-21 21:22:16 +01:00
|
|
|
static ErrorOr<void> print_mounts()
|
2019-08-17 12:23:22 +03:00
|
|
|
{
|
|
|
|
// Output info about currently mounted filesystems.
|
2022-01-21 21:22:16 +01:00
|
|
|
auto df = TRY(Core::File::open("/proc/df", Core::OpenMode::ReadOnly));
|
2019-08-17 12:23:22 +03:00
|
|
|
|
2019-09-21 20:50:06 +02:00
|
|
|
auto content = df->read_all();
|
2022-01-21 21:22:16 +01:00
|
|
|
auto json = TRY(JsonValue::from_string(content));
|
2019-08-17 12:23:22 +03:00
|
|
|
|
2021-11-15 01:46:51 +01:00
|
|
|
json.as_array().for_each([](auto& value) {
|
2021-05-31 17:59:02 +01:00
|
|
|
auto& fs_object = value.as_object();
|
2019-08-17 12:23:22 +03:00
|
|
|
auto class_name = fs_object.get("class_name").to_string();
|
|
|
|
auto mount_point = fs_object.get("mount_point").to_string();
|
2020-05-28 17:29:17 +03:00
|
|
|
auto source = fs_object.get("source").as_string_or("none");
|
2020-01-11 18:51:24 +03:00
|
|
|
auto readonly = fs_object.get("readonly").to_bool();
|
|
|
|
auto mount_flags = fs_object.get("mount_flags").to_int();
|
|
|
|
|
2021-05-31 15:43:25 +01:00
|
|
|
out("{} on {} type {} (", source, mount_point, class_name);
|
2020-01-11 18:51:24 +03:00
|
|
|
|
2020-05-28 18:03:58 +03:00
|
|
|
if (readonly || mount_flags & MS_RDONLY)
|
2021-05-31 15:43:25 +01:00
|
|
|
out("ro");
|
2020-01-11 18:51:24 +03:00
|
|
|
else
|
2021-05-31 15:43:25 +01:00
|
|
|
out("rw");
|
2020-01-11 18:51:24 +03:00
|
|
|
|
|
|
|
if (mount_flags & MS_NODEV)
|
2021-05-31 15:43:25 +01:00
|
|
|
out(",nodev");
|
2020-01-11 18:51:24 +03:00
|
|
|
if (mount_flags & MS_NOEXEC)
|
2021-05-31 15:43:25 +01:00
|
|
|
out(",noexec");
|
2020-01-11 18:51:24 +03:00
|
|
|
if (mount_flags & MS_NOSUID)
|
2021-05-31 15:43:25 +01:00
|
|
|
out(",nosuid");
|
2020-01-11 18:51:24 +03:00
|
|
|
if (mount_flags & MS_BIND)
|
2021-05-31 15:43:25 +01:00
|
|
|
out(",bind");
|
2020-01-11 18:51:24 +03:00
|
|
|
|
2021-05-31 15:43:25 +01:00
|
|
|
outln(")");
|
2019-08-17 12:23:22 +03:00
|
|
|
});
|
|
|
|
|
2022-01-21 21:22:16 +01:00
|
|
|
return {};
|
2019-08-17 12:23:22 +03:00
|
|
|
}
|
|
|
|
|
2022-01-21 21:22:16 +01:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
2019-08-02 23:18:47 +10:00
|
|
|
{
|
2022-01-30 19:37:08 +01:00
|
|
|
StringView source;
|
|
|
|
StringView mountpoint;
|
|
|
|
StringView fs_type;
|
|
|
|
StringView options;
|
2020-01-27 20:25:36 +03:00
|
|
|
bool should_mount_all = false;
|
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
Core::ArgsParser args_parser;
|
|
|
|
args_parser.add_positional_argument(source, "Source path", "source", Core::ArgsParser::Required::No);
|
|
|
|
args_parser.add_positional_argument(mountpoint, "Mount point", "mountpoint", Core::ArgsParser::Required::No);
|
2020-01-27 20:25:36 +03:00
|
|
|
args_parser.add_option(fs_type, "File system type", nullptr, 't', "fstype");
|
|
|
|
args_parser.add_option(options, "Mount options", nullptr, 'o', "options");
|
|
|
|
args_parser.add_option(should_mount_all, "Mount all file systems listed in /etc/fstab", nullptr, 'a');
|
2022-01-21 21:22:16 +01:00
|
|
|
args_parser.parse(arguments);
|
2020-01-27 20:25:36 +03:00
|
|
|
|
2022-02-01 23:02:35 -08:00
|
|
|
if (should_mount_all) {
|
2022-01-21 21:22:16 +01:00
|
|
|
TRY(mount_all());
|
2022-02-01 23:02:35 -08:00
|
|
|
return 0;
|
|
|
|
}
|
2019-08-02 23:18:47 +10:00
|
|
|
|
2022-02-02 17:54:59 +01:00
|
|
|
if (source.is_empty() && mountpoint.is_empty()) {
|
2022-01-21 21:22:16 +01:00
|
|
|
TRY(print_mounts());
|
2022-02-02 17:54:59 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2019-08-15 19:13:56 +03:00
|
|
|
|
2022-01-30 19:37:08 +01:00
|
|
|
if (!source.is_empty() && !mountpoint.is_empty()) {
|
|
|
|
if (fs_type.is_empty())
|
2020-01-27 20:25:36 +03:00
|
|
|
fs_type = "ext2";
|
2022-01-30 19:37:08 +01:00
|
|
|
int flags = !options.is_empty() ? parse_options(options) : 0;
|
2020-01-27 20:25:36 +03:00
|
|
|
|
2020-04-06 11:55:08 +03:00
|
|
|
int fd = get_source_fd(source);
|
|
|
|
|
2022-01-21 21:22:16 +01:00
|
|
|
TRY(Core::System::mount(fd, mountpoint, fs_type, flags));
|
|
|
|
|
2019-08-17 12:23:22 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2020-01-27 20:25:36 +03:00
|
|
|
|
2022-01-21 21:22:16 +01:00
|
|
|
args_parser.print_usage(stderr, arguments.argv[0]);
|
|
|
|
|
2020-01-27 20:25:36 +03:00
|
|
|
return 1;
|
2019-08-02 23:18:47 +10:00
|
|
|
}
|