mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
146903a3b5
This matches out general macro use, and specifically other verification macros like VERIFY(), VERIFY_NOT_REACHED(), VERIFY_INTERRUPTS_ENABLED(), and VERIFY_INTERRUPTS_DISABLED().
38 lines
1 KiB
C++
38 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/Userspace.h>
|
|
#include <Kernel/FileSystem/OpenFileDescription.h>
|
|
#include <Kernel/Process.h>
|
|
#include <LibC/sys/ioctl_numbers.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;
|
|
}
|
|
|
|
}
|