ladybird/Userland/Utilities/test-unveil.cpp

71 lines
2.4 KiB
C++
Raw Normal View History

/*
2022-03-29 20:25:04 +03:00
* Copyright (c) 2020-2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibCore/ArgsParser.h>
2022-03-29 20:25:04 +03:00
#include <LibCore/System.h>
#include <LibMain/Main.h>
#include <limits.h>
#include <unistd.h>
2022-03-29 20:25:04 +03:00
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
Vector<StringView> paths_to_test;
2022-03-29 20:25:04 +03:00
StringView permissions = "r"sv;
bool should_sleep = false;
Core::ArgsParser parser;
parser.add_option(permissions, "Apply these permissions going forward", "permissions", 'p', "unveil-permissions");
parser.add_option(should_sleep, "Sleep after processing all arguments", "sleep", 's');
parser.add_option(Core::ArgsParser::Option {
.argument_mode = Core::ArgsParser::OptionArgumentMode::Required,
.help_string = "Add a path to the unveil list",
.long_name = "unveil",
.short_name = 'u',
.value_name = "path",
.accept_value = [&](auto* s) {
StringView path { s, strlen(s) };
if (path.is_empty())
return false;
2022-03-29 20:25:04 +03:00
auto maybe_error = Core::System::unveil(path, permissions);
if (maybe_error.is_error()) {
warnln("{}", maybe_error.error());
return false;
}
return true;
} });
parser.add_option(Core::ArgsParser::Option {
.argument_mode = Core::ArgsParser::OptionArgumentMode::None,
.help_string = "Lock the veil",
.long_name = "lock",
.short_name = 'l',
.accept_value = [&](auto*) {
2022-03-29 20:25:04 +03:00
auto maybe_error = Core::System::unveil(nullptr, nullptr);
if (maybe_error.is_error()) {
warnln("unveil(nullptr, nullptr): {}", maybe_error.error());
return false;
}
return true;
} });
parser.add_positional_argument(Core::ArgsParser::Arg {
.help_string = "Test a path against the veil",
.name = "path",
.min_values = 0,
.max_values = INT_MAX,
.accept_value = [&](auto* s) {
auto maybe_error = Core::System::access({ s, strlen(s) }, X_OK);
2022-03-29 20:25:04 +03:00
if (maybe_error.is_error())
warnln("'{}' - fail: {}", s, maybe_error.error());
else
2022-03-29 20:25:04 +03:00
warnln("'{}' - ok", s);
return true;
} });
2022-03-29 20:25:04 +03:00
parser.parse(arguments);
if (should_sleep)
sleep(INT_MAX);
return 0;
}