summaryrefslogtreecommitdiff
path: root/Userland/Utilities/test-unveil.cpp
blob: 104faf47ffb9604517dd04ce1a3af10af34fde6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 * Copyright (c) 2020-2022, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibCore/ArgsParser.h>
#include <LibCore/System.h>
#include <LibMain/Main.h>
#include <limits.h>
#include <unistd.h>

ErrorOr<int> serenity_main(Main::Arguments arguments)
{
    Vector<StringView> paths_to_test;
    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;
            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*) {
            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);
            if (maybe_error.is_error())
                warnln("'{}' - fail: {}", s, maybe_error.error());
            else
                warnln("'{}' - ok", s);
            return true;
        } });

    parser.parse(arguments);
    if (should_sleep)
        sleep(INT_MAX);
    return 0;
}