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
|
|
|
*/
|
|
|
|
|
2021-05-15 12:34:40 +02:00
|
|
|
#include <AK/Assertions.h>
|
2019-08-17 12:23:22 +03:00
|
|
|
#include <AK/JsonArray.h>
|
|
|
|
#include <AK/JsonObject.h>
|
|
|
|
#include <AK/JsonValue.h>
|
2020-04-06 11:55:08 +03:00
|
|
|
#include <AK/Optional.h>
|
2020-02-06 15:04:03 +01:00
|
|
|
#include <LibCore/ArgsParser.h>
|
|
|
|
#include <LibCore/File.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>
|
|
|
|
|
2020-08-10 23:48:37 +02:00
|
|
|
static int parse_options(const 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
|
2020-05-06 18:18:24 +01:00
|
|
|
fprintf(stderr, "Ignoring invalid option: %s\n", part.to_string().characters());
|
2020-01-11 18:51:24 +03:00
|
|
|
}
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
2020-08-10 23:48:37 +02:00
|
|
|
static bool is_source_none(const char* source)
|
2020-04-06 11:55:08 +03:00
|
|
|
{
|
|
|
|
return !strcmp("none", source);
|
|
|
|
}
|
|
|
|
|
2020-08-10 23:48:37 +02:00
|
|
|
static int get_source_fd(const char* source)
|
2020-04-06 11:55:08 +03:00
|
|
|
{
|
|
|
|
if (is_source_none(source))
|
|
|
|
return -1;
|
|
|
|
int fd = open(source, O_RDWR);
|
|
|
|
if (fd < 0)
|
|
|
|
fd = open(source, O_RDONLY);
|
|
|
|
if (fd < 0) {
|
|
|
|
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());
|
|
|
|
}
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2020-08-10 23:48:37 +02:00
|
|
|
static bool 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
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
auto fstab = Core::File::construct("/etc/fstab");
|
2021-05-12 13:56:43 +04:30
|
|
|
if (!fstab->open(Core::OpenMode::ReadOnly)) {
|
2019-09-21 20:50:06 +02:00
|
|
|
fprintf(stderr, "Failed to open /etc/fstab: %s\n", fstab->error_string());
|
2019-08-17 12:23:22 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
|
|
|
fprintf(stderr, "Invalid fstab entry: %s\n", line.characters());
|
|
|
|
all_ok = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* mountpoint = parts[1].characters();
|
|
|
|
const char* fstype = parts[2].characters();
|
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
|
|
|
|
|
|
|
if (strcmp(mountpoint, "/") == 0) {
|
2021-01-09 18:51:44 +01:00
|
|
|
dbgln("Skipping mounting root");
|
2019-08-17 12:23:22 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-04-06 11:55:08 +03:00
|
|
|
const char* filename = parts[0].characters();
|
|
|
|
|
|
|
|
int fd = get_source_fd(filename);
|
|
|
|
|
2021-01-17 20:28:43 +01:00
|
|
|
dbgln("Mounting {} ({}) on {}", filename, fstype, mountpoint);
|
|
|
|
|
2020-04-06 11:55:08 +03:00
|
|
|
int rc = mount(fd, mountpoint, fstype, flags);
|
2019-08-17 12:23:22 +03:00
|
|
|
if (rc != 0) {
|
2020-04-06 11:55:08 +03:00
|
|
|
fprintf(stderr, "Failed to mount %s (FD: %d) (%s) on %s: %s\n", filename, fd, fstype, mountpoint, strerror(errno));
|
2019-08-17 12:23:22 +03:00
|
|
|
all_ok = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return all_ok;
|
|
|
|
}
|
|
|
|
|
2020-08-10 23:48:37 +02:00
|
|
|
static bool print_mounts()
|
2019-08-17 12:23:22 +03:00
|
|
|
{
|
|
|
|
// Output info about currently mounted filesystems.
|
2020-02-02 12:34:39 +01:00
|
|
|
auto df = Core::File::construct("/proc/df");
|
2021-05-12 13:56:43 +04:30
|
|
|
if (!df->open(Core::OpenMode::ReadOnly)) {
|
2019-09-21 20:50:06 +02:00
|
|
|
fprintf(stderr, "Failed to open /proc/df: %s\n", df->error_string());
|
2019-08-17 12:23:22 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-09-21 20:50:06 +02:00
|
|
|
auto content = df->read_all();
|
2020-06-10 21:40:27 -07:00
|
|
|
auto json = JsonValue::from_string(content);
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(json.has_value());
|
2019-08-17 12:23:22 +03:00
|
|
|
|
2020-06-10 21:40:27 -07:00
|
|
|
json.value().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();
|
|
|
|
|
2020-05-28 17:29:17 +03:00
|
|
|
printf("%s on %s type %s (", source.characters(), mount_point.characters(), class_name.characters());
|
2020-01-11 18:51:24 +03:00
|
|
|
|
2020-05-28 18:03:58 +03:00
|
|
|
if (readonly || mount_flags & MS_RDONLY)
|
2020-01-11 18:51:24 +03:00
|
|
|
printf("ro");
|
|
|
|
else
|
|
|
|
printf("rw");
|
|
|
|
|
|
|
|
if (mount_flags & MS_NODEV)
|
|
|
|
printf(",nodev");
|
|
|
|
if (mount_flags & MS_NOEXEC)
|
|
|
|
printf(",noexec");
|
|
|
|
if (mount_flags & MS_NOSUID)
|
|
|
|
printf(",nosuid");
|
|
|
|
if (mount_flags & MS_BIND)
|
|
|
|
printf(",bind");
|
|
|
|
|
|
|
|
printf(")\n");
|
2019-08-17 12:23:22 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-08-02 23:18:47 +10:00
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2020-01-27 20:25:36 +03:00
|
|
|
const char* source = nullptr;
|
|
|
|
const char* mountpoint = nullptr;
|
|
|
|
const char* fs_type = nullptr;
|
|
|
|
const char* options = nullptr;
|
|
|
|
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');
|
|
|
|
args_parser.parse(argc, argv);
|
|
|
|
|
|
|
|
if (should_mount_all) {
|
2019-08-17 12:23:22 +03:00
|
|
|
return mount_all() ? 0 : 1;
|
2019-08-02 23:18:47 +10:00
|
|
|
}
|
|
|
|
|
2020-01-27 20:25:36 +03:00
|
|
|
if (!source && !mountpoint)
|
2019-08-17 12:23:22 +03:00
|
|
|
return print_mounts() ? 0 : 1;
|
2019-08-15 19:13:56 +03:00
|
|
|
|
2020-01-27 20:25:36 +03:00
|
|
|
if (source && mountpoint) {
|
|
|
|
if (!fs_type)
|
|
|
|
fs_type = "ext2";
|
|
|
|
int flags = options ? parse_options(options) : 0;
|
|
|
|
|
2020-04-06 11:55:08 +03:00
|
|
|
int fd = get_source_fd(source);
|
|
|
|
|
|
|
|
if (mount(fd, mountpoint, fs_type, flags) < 0) {
|
2019-08-17 12:23:22 +03:00
|
|
|
perror("mount");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2020-01-27 20:25:36 +03:00
|
|
|
|
|
|
|
args_parser.print_usage(stderr, argv[0]);
|
|
|
|
return 1;
|
2019-08-02 23:18:47 +10:00
|
|
|
}
|