summaryrefslogtreecommitdiff
path: root/Userland/Utilities/mkfifo.cpp
blob: 3cd722997e2b210bc52e9c23e3a7a3f65a38772d (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
/*
 * Copyright (c) 2020, Peter Elliott <pelliott@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibCore/ArgsParser.h>
#include <LibCore/FilePermissionsMask.h>
#include <LibCore/System.h>
#include <LibMain/Main.h>
#include <sys/stat.h>

ErrorOr<int> serenity_main(Main::Arguments arguments)
{
    TRY(Core::System::pledge("stdio dpath"));

    String mode_string;
    mode_t mask_reference_mode = 0777;
    mode_t mode = 0666;
    Vector<StringView> paths;

    Core::ArgsParser args_parser;
    args_parser.add_option(mode_string, "Set FIFO permissions", "mode", 'm', "mode");
    args_parser.add_positional_argument(paths, "Paths of FIFOs to create", "paths");
    args_parser.parse(arguments);

    if (!mode_string.is_empty()) {
        auto mask = TRY(Core::FilePermissionsMask::parse(mode_string));
        mode = mask.apply(mask_reference_mode);
    }

    int exit_code = 0;
    for (auto path : paths) {
        auto error_or_void = Core::System::mkfifo(path, mode);
        if (error_or_void.is_error()) {
            perror("mkfifo");
            exit_code = 1;
        }
    }

    return exit_code;
}