summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/ioctl.cpp
blob: bc258ae919e3539ab1c3e7d95afa6031b7afa4a9 (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
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <AK/Userspace.h>
#include <Kernel/API/Ioctl.h>
#include <Kernel/FileSystem/OpenFileDescription.h>
#include <Kernel/Tasks/Process.h>

namespace Kernel {

ErrorOr<FlatPtr> Process::sys$ioctl(int fd, unsigned request, FlatPtr arg)
{
    VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this);
    auto description = TRY(open_file_description(fd));
    if (request == FIONBIO) {
        description->set_blocking(TRY(copy_typed_from_user(Userspace<int const*>(arg))) == 0);
        return 0;
    }
    if (request == FIOCLEX) {
        m_fds.with_exclusive([&](auto& fds) {
            fds[fd].set_flags(fds[fd].flags() | FD_CLOEXEC);
        });
        return 0;
    }
    if (request == FIONCLEX) {
        m_fds.with_exclusive([&](auto& fds) {
            fds[fd].set_flags(fds[fd].flags() & ~FD_CLOEXEC);
        });
        return 0;
    }
    TRY(description->file().ioctl(*description, request, arg));
    return 0;
}

}